DEV Community

Cover image for Timezone for DateTime Field at Laravel Nova
mirac sengonul
mirac sengonul

Posted on • Updated on

Timezone for DateTime Field at Laravel Nova

Hi there 👋

You may want to see created_at field or more fields like this with timezone.

Nova allows us to override any field.

Date::make('CreatedAt', function () {
                if ($this->created_at) {
                    return sprintf('%s', Carbon::parse($this->created_at)->setTimezone('Europe/Istanbul')->format('Y-m-d'));
                }
           }),
Enter fullscreen mode Exit fullscreen mode

We were able to manipulate the created_at field.

We've been registering the records that date time types without UTC. But after we had made changes, we saw that with timezone.

Have a good day 🎊

Oldest comments (0)