v2.10
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.