Eloquent sortBy - Specify Asc or Desc
Trying Sort My Eloquent Collection: $Collection->Sortby('Field'); There Is No Information in Laravel 4'S Docs on How to Choose Descending or Ascending for This...
Trying sort my eloquent collection:
$collection->sortBy('field');
There is no information in Laravel 4's docs on how to choose descending or ascending for this sort method.
Is it possible?
3 Answers
To sort by ASC: Laravel Docs - sortBy()
$collection->sortBy('field');
To sort by DESC: Laravel Docs - sortByDesc()
$collection->sortByDesc('field');
Laravel 5
Laravel 4
Usage
$collection->sortBy('field', [], true); // true for descending
In 4.2, the second parameter needs to be an int, SORT_REGULAR is default
$collection->sortBy('field', SORT_REGULAR, true); //true for descending