Answers for "laravel eloquent whererelation sort"

PHP
4

sort laravel eloquent

$posts = Post::orderBy('id', 'DESC')->get();
Posted by: Guest on August-20-2020
0

laravel collection sort

$collection = collect([5, 3, 1, 2, 4]);

$sorted = $collection->sort();

$sorted->values()->all();

// [1, 2, 3, 4, 5]
Posted by: Guest on July-24-2021

Browse Popular Code Answers by Language