How to Do following Query in Laravel Eloquent?
SELECT catID, catName, imgPath FROM categories WHERE catType = \"Root\"
I have tried followi
CategoryModel::wherecatType('Root') ->pluck('catName', 'catID', 'imgPath');