laravel get records created today code example
Example 1: laravel where creation is today carbon
$posts = Post::whereDate('created_at', Carbon::today())->get();
Example 2: laravel where created_at today
$posts = Post::whereDate('created_at', Carbon::today())->get();