Eloquent method find by multiple parameters in Laravel
Eloquent method find() may accept multiple parameters, and then it returns a Collection of all records found, not just one Model.
Example 1: Will return Eloquent Model
$user = User::find(1);
Example 2: Will return Eloquent Collection
$users = User::find([1,2,3]);