如何在Laravel Eloquent中选择某些字段?
如何在Laravel Eloquent中进行以下查询?
SELECT catID, catName, imgPath FROM categories WHERE catType = "Root"
我已尝试以下操作
CategoryModel::where('catType', '=', 'Root')
->lists('catName', 'catID', 'imgPath');
但它只返回两个字段。
Array ( [7] => Category 1 )