How to order by using appended attribute in Laravel

后端 未结 5 1038
南旧
南旧 2021-02-13 19:05

I created an appends attribute in Laravel Model, from the code below.

    protected $appends = array(\'total\'=>\'\');

And I set the returne

5条回答
  •  梦如初夏
    2021-02-13 19:39

    use sortBy for ASC

    $collection->sortBy('field');
    

    use sortByDesc for DESC

    $collection->sortByDesc('field');
    

提交回复
热议问题