如何以相反的顺序编写laravel查询

SELECT * FROM orders ORDER BY -id DESC


这可行,但想在laravel查询中转移

如何以这种方式写请指导

return $this->belongsToMany('something...')->where('actove', '=', 1)->orderBy('id','DESC')->with(['users']);

最佳答案

该代码可以工作

return $this->belongsToMany('something...')->where('active', '=', 1)->oldest('id')->with(['users']);

09-25 20:45