Laravel where in

$users = DB::table('users')
                    ->whereIn('id', [1, 2, 3])
                    ->get();
Xanthous Xenomorph