Use WhereIn for your model, and you must pass any number inside the array.
$Data = Banks::whereIn('service_id ', array(1, 2, 3))->get(); var_dump($Data);
I use var_dump and you have to choose your own coloumn to get your needs.
Docs: Eloquent , Advance Where
source share