laravel get all order by code example

Example 1: laravel order by desc

$posts = Post::orderBy('id', 'DESC')->get();

Example 2: laravel order by

$users = DB::table('users')
         -> orderBy('name', 'desc')
         -> get();

Example 3: laravel 6 orderby

// Make sure column names are correct
$inquiries = Inquiry::orderBy('status', 'ASC')
    ->orderBy('created_at', 'DESC')
    ->get();

Example 4: laravel get all records order by

$posts = Post::orderBy('created_at', 'desc')->get();

Example 5: get all sort by laravel

$results = Project::orderBy('name')->get();

Tags:

Php Example