Laravel 5 Eloquent where and or in Clauses

前端 未结 4 1014
轮回少年
轮回少年 2021-01-30 07:58

i try to get results from table with multiple where and/or clauses.

My SQL statement is:

SELECT * FROM tbl
WHERE m__Id = 46
AND
t_Id = 2
AND
(Cab = 2 OR          


        
4条回答
  •  情话喂你
    2021-01-30 08:38

    You can try to use the following code instead:

     $pro= model_name::where('col_name', '=', 'value')->get();
    

提交回复
热议问题