Answers for "order by eloquent laravel 7"

PHP
1

laravel order by

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

laravel get all records order by

$posts = Post::orderBy('created_at', 'desc')->get();
Posted by: Guest on October-21-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