Level 73
What you have is exactly the same time, so maybe that does not have any results in the database and that’s why it is empty. You can try using Carbon too:
$start = Carbon\Carbon::createFromFormat('m/d/Y', $range[0])->startOfDay();
$end = Carbon\Carbon::createFromFormat('m/d/Y', $range[1])->endOfDay();
$query->whereBetween('created_at', [$end, $end]);
1 like