Du kan prøve noget som dette:
$count = DB::table('jobseekers')
->select('created_at', DB::raw('count(*) as peoples'))
->groupBy('created_at')
->get();
Du kan prøve noget som dette:
$count = DB::table('jobseekers')
->select('created_at', DB::raw('count(*) as peoples'))
->groupBy('created_at')
->get();