sortByDesc laravel code example

Example 1: order By Asc in laravbel

->orderBy('id', 'DESC');

Example 2: orderby in laravel

/**
 * Show the application dashboard.
 *
 * @return \Illuminate\Http\Response
 */
public function index()
{
    $messages = Message::select("*")
                            ->where('receiver_id',$id)
                            ->orderBy('created_at', 'desc')
                            ->get();
  
    dd($messages);
}

Example 3: laravel sort collection

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

$sorted = $collection->sortDesc();

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

// [5, 4, 3, 2, 1]

Example 4: sort laravel eloquent

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

Example 5: get all sort by laravel

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

Example 6: laravel 6 orderby

$inquiries = Inquiry::all()->sortByDesc('created_at')->sortByDesc('Status')->values();