Можете да опитате нещо подобно:
$count = DB::table('jobseekers')
->select('created_at', DB::raw('count(*) as peoples'))
->groupBy('created_at')
->get();
Можете да опитате нещо подобно:
$count = DB::table('jobseekers')
->select('created_at', DB::raw('count(*) as peoples'))
->groupBy('created_at')
->get();