laravel eloquent sortby code example

Example 1: 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 2: laravel get all records order by

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

Example 3: sort laravel eloquent

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

Example 4: get all sort by laravel

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

Example 5: laravel get all records order by

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

Tags:

Php Example