eloquent function wherein code example
Example 1: eloquent where in
$users = DB::table('users')->whereIn('id', array(1, 2, 3))->get()
Example 2: laravel whereIn example
public function index()
{
$data= User::whereIn('name', ['john','dam','smith'])->get();
dd($data);
}