How to Select Certain Fields in Laravel Eloquent?

后端 未结 5 833
野性不改
野性不改 2021-01-04 10:09

How to Do following Query in Laravel Eloquent?

SELECT catID, catName, imgPath FROM categories WHERE catType = \"Root\"

I have tried followi

5条回答
  •  说谎
    说谎 (楼主)
    2021-01-04 10:22

    CategoryModel::wherecatType('Root')
                ->pluck('catName', 'catID', 'imgPath');
    

提交回复
热议问题