Method orderBy does not exist in Laravel Eloquent?

前端 未结 7 2050
执念已碎
执念已碎 2020-12-29 05:16

I have a piece of code like this:

$products = Product::all()

if ($search_value) {
    $products = $products->where(\'name\', \'LIKE\', \"%$search_value%\         


        
7条回答
  •  滥情空心
    2020-12-29 05:50

    just use the one line code it will work fine

    $product= Product::orderBy('created_at','desc')->get();
    

提交回复
热议问题