最佳答案
我想在Laravel Eloquent中使用orderBy()
方法对Laravel 4中的多个列进行排序。查询将使用Eloquent像这样生成:
SELECT *
FROM mytable
ORDER BY
coloumn1 DESC, coloumn2 ASC
我该怎么做呢?