Laravel Eloquent orderByRaw() Query Example

10-Apr-2023

.

Admin

Laravel Eloquent orderByRaw() Query Example

Hi Guys,

In this example,I will learn you how to use orderByRaw() query in laravel.you can easy and simply use orderByRaw() query in laravel.

The orderByRaw method may be used to set a raw string as the value of the order by clause. So let’s understand through the query.

Example 1:


/**

* The attributes that are mass assignable.

*

* @var array

*/

public function index()

{

$users = User::orderByRaw('updated_at - created_at DESC')

->get();

dd($users);

}

Example 2:

/**

* The attributes that are mass assignable.

*

* @var array

*/

public function index()

{

$users = DB::table('users')

->orderByRaw('updated_at - created_at DESC')

->get();

dd($users);

}

It will help you.....

#Laravel 7

#Laravel

#Laravel 6