Search code examples
phparrayslaravel-4eloquent

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 sort method.

Is it possible?


Solution

  • Laravel 5

    https://laravel.com/docs/5.8/collections#method-sortby

    Laravel 4

    https://laravel.com/api/4.2/Illuminate/Database/Eloquent/Collection.html#method_sortBy

    Usage

    $collection->sortBy('field', [], true); // true for descending