Laravel Nova Datetime field showing wrong value

35 Views Asked by At

I have an event model with two properties. start_at and end_at.

I have a Laravel Nova instance to edit the props. For some reason, it shows incorrectly in the dashboard.

Database shows:

enter image description here

But in Nova, the fields shows for both fields: 2024-01-15 00:00:00

enter image description here

Props defined in Nova are

DateTime::make('Start At'),
DateTime::make('End At'),

What am I doing wrong?

0

There are 0 best solutions below