How to Make Laravel Eloquent “IN” Query?

前端 未结 4 1171
迷失自我
迷失自我 2020-12-25 09:28

I want to make query in Laravel Eloquent like here its raw MySQL query

SELECT  * from  exampleTbl where id in(1,2,3,4)

I have tried this i

4条回答
  •  我在风中等你
    2020-12-25 09:39

    If you are using Query builder then you may use a blow

    DB::table(Newsletter Subscription)
    ->select('*')
    ->whereIn('id', $send_users_list)
    ->get()
    

    If you are working with Eloquent then you can use as below

    $sendUsersList = Newsletter Subscription:: select ('*')
                    ->whereIn('id', $send_users_list)
                    ->get();
    

提交回复
热议问题