Method orderBy does not exist in Laravel Eloquent?

前端 未结 7 2051
执念已碎
执念已碎 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条回答
  •  猫巷女王i
    2020-12-29 05:34

    If you want to get the list of all data and grab it in descending order try this:

    $post = Post::orderBy('id', 'DESC')->get();
    

提交回复
热议问题