Skip to content

v2.10

Compare
Choose a tag to compare
@micheleangioni micheleangioni released this 27 Jan 20:57
· 42 commits to master since this release

Updated AbstractEloquentRepopitory:

Now $where = array() parameters can contain null values. For example

$where = [
    'user_id' => null
    'name' => 'my name'
];

will work fine and will act as a

->whereNull('user_id')
->where('name', 'my name')

clause.