laravel eloquent all orderby code example
Example 1: laravel order by
$users = DB::table('users')
-> orderBy('name', 'desc')
-> get();
Example 2: laravel 6 orderby
// Make sure column names are correct
$inquiries = Inquiry::orderBy('status', 'ASC')
->orderBy('created_at', 'DESC')
->get();
Example 3: laravel get all records order by
$posts = Post::orderBy('created_at', 'desc')->get();
Example 4: get all sort by laravel
$results = Project::orderBy('name')->get();