Answers for "sort laravel eloquent"

PHP
1

laravel order by

$users = DB::table('users')
         -> orderBy('name', 'desc')
         -> get();
Posted by: Guest on March-09-2021
1

laravel sort collection

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

$sorted = $collection->sortDesc();

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

// [5, 4, 3, 2, 1]
Posted by: Guest on June-11-2020
3

sort laravel eloquent

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

get all sort by laravel

$results = Project::orderBy('name')->get();
Posted by: Guest on August-20-2020

Browse Popular Code Answers by Language