So I have this query:
Report::whereDate('date', '=', Carbon::now()->format('Y-m-d H:i'))->get();
Dates are stored like this for example:
2017-01-08 10:00:00
But I never get any results, does this have to do something with the seconds? If so, how can I avoid this and get my results? Using a mutator perhaps to ignore seconds?
PS. I want to get the results from the specified time, because I am using it for a scheduled task (command). E-mails should be sent at specified times, and the times vary :)
You can try with WhereRaw