laravel wheredate

Solutions on MaxInterview for laravel wheredate by the best coders in the world

showing results for - "laravel wheredate"
Liam
03 Feb 2019
1$q->whereDate('created_at', '=', date('Y-m-d'));
Clara
06 Jul 2016
1$users = DB::table('users')
2                ->whereDate('created_at', '2016-12-31')
3                ->get();