Laravel 7 WhereTime Eloquent Query Example

10-Apr-2023

.

Admin

Hi Guys,

In this example,I will learn you how to use wheretime eloquent query in laravel application. we will show wheretime eloquent query in laravel example.

The whereTime method may be used to compare a column's value against a specifice time.

Exammple 1:


/**

* The attributes that are mass assignable.

*

* @var array

*/

public function index()

{

$users = User::whereTime('created_at', '=', '03:03:03')

->get();

dd($users);

}

Exammple 2:

/**

* The attributes that are mass assignable.

*

* @var array

*/

public function index()

{

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

->whereTime('created_at', '=', '03:03:03')

->get();

dd($users);

}

It will help you...

#Laravel 7

#Laravel

#Laravel 6