order by asc laravel code example

Example 1: laravel order by asc not null

select id, slug, position from  products order by -position DESC

Example 2: laravel order by desc

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

Example 3: order By Asc in laravbel

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

Example 4: 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 5: eloquent model sort by ascending order

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

Tags:

Php Example