Answers for "eloquent model select all where"

PHP
0

laravel eloquent get all where in

// Get All Where in condition 
$array = [1,2,3,4,5];
ModelClassName::whereIn('columnName',$array)->get();
Posted by: Guest on August-02-2021

Browse Popular Code Answers by Language