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'));
}
}),
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 🎊
Top comments (0)