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?
https://laravel.com/docs/5.8/collections#method-sortby
https://laravel.com/api/4.2/Illuminate/Database/Eloquent/Collection.html#method_sortBy
$collection->sortBy('field', [], true); // true for descending