Skip to content

All topics  /  Laravel

How to Get Today Date Records in Laravel?

Laravel

Dec 24, 2019

Hi Guys,

In this example,I will learn you how to get today date records in laravel. you can simply get to current date records in laravel.

I give you simple and easy example of get today date records in laravel. You can see bellow example in whereDate function is used.

Example 1 :-


/**
* The attributes that are mass assignable.
*
* @var array
*/
public function data(Request $request)
{
    $users = User::whereDate('created_at', Carbon::today())->get();
    dd($users);
}

Example 2 :-

/**
* The attributes that are mass assignable.
*
* @var array
*/
public function data(Request $request)
{
    $users = DB::table('users')->select(DB::raw('*'))
              ->whereRaw('Date(created_at) = CURDATE()')->get();
    dd($users);
}

It will help you...