Following this post How to create multiple where clause query using Laravel Eloquent?
I am trying to insert multiple 'and' conditions:
$matchThese = ['destination.country' => 'china', 'doc.description' => 'business'];
return $collection->where($matchThese);
but I receive this error:
Too few arguments to function Illuminate\Support\Collection::where(), 1 passed . . . but two expected