我想在Laravel Eloquent中查询它的原始MySQL查询
SELECT * from exampleTbl where id in(1,2,3,4)
我在Laravel Eloquent尝试了这个但是它不起作用
DB::where("id IN(23,25)")->get()
php orm laravel eloquent
eloquent ×1
laravel ×1
orm ×1
php ×1