How to get only date on database column, I have difficulties using Carbon on controller:
$data['nowUser'] = User::where('date', Carbon::today()->toDateString())->get();
Date column looks like this in the database:
That is a DATETIME
column, so there's no need for additional formatting the Carbon
instance. However you need to use whereDate
if you want the fetch all users for which the date
column contains today's date:
$data['nowUser'] = User::whereDate('date', '=', Carbon::today())->get();
Because when you pass Carbon::today()
to the Query Builder method, the __toString
method will be automatically called and return a DATETIME
string with the format from Carbon::DEFAULT_TO_STRING_FORMAT
, which is exactly that MySQL format Y-m-d H:i:s
.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With