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:
But in Nova, the fields shows for both fields: 2024-01-15 00:00:00
Props defined in Nova are
DateTime::make('Start At'),
DateTime::make('End At'),
What am I doing wrong?

