Skip to content

Instantly share code, notes, and snippets.

@libesto
Forked from remoblaser/laravel-sortby-closure.md
Created December 3, 2020 14:20
Show Gist options
  • Save libesto/518e40c22edd8abc691f3cc41408eadb to your computer and use it in GitHub Desktop.
Save libesto/518e40c22edd8abc691f3cc41408eadb to your computer and use it in GitHub Desktop.
Laravel Collection: Sort a String Datefield with a closure
$sorted = $collection->sortBy(function ($element, $key) {
      $timestamp = strtotime($element->date_field);   
      return $timestamp;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment