Laravel no results returned when working with datetime field

166 Views Asked by At

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 :)

4

There are 4 best solutions below

2
On BEST ANSWER

You can try with WhereRaw

$format = Carbon::now()->format('Y-m-d H:i');
Report::whereRaw("date_format(date, '%Y-%m-%d %H:%i ')  = '$format'")
0
On

I figured it out, I didn't want to use a boolean in my database to check wether or not an e-mail has been sent for the specific report, because they are daily reports. But I will another cron job to reset these booleans at the end of the day.

2
On

Add date to $dates property in the Report model:

protected $dates = ['date'];

You said you want to check the time, so just do this:

Report::where('date', Carbon::now())->get();
1
On

I guess I've mis understood the question.

The convenient way to match date time is by using Carbon.

In your model add the following line.

protected dates = ['date'];

By doing that your dates will be saved as Carbon instance.

Now you can do

Report::whereDate('date', Carbon::now())->get();