Timezone for DateTime Field at Laravel Nova

Hi there ?

You can want to see created_at field or more fields like this with timezone. You follow me.

Nova allows us for override any field.

Date::make(‘CreatedAt’, function () {
if ($this->created_at) {
ret…


This content originally appeared on DEV Community and was authored by mirac sengonul

Hi there ?

You can want to see created_at field or more fields like this with timezone. You follow me.

Nova allows us for 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 was able to manipulate created_at field.

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

Have good day ?


This content originally appeared on DEV Community and was authored by mirac sengonul


Print Share Comment Cite Upload Translate Updates
APA

mirac sengonul | Sciencx (2021-05-05T18:47:15+00:00) Timezone for DateTime Field at Laravel Nova. Retrieved from https://www.scien.cx/2021/05/05/timezone-for-datetime-field-at-laravel-nova/

MLA
" » Timezone for DateTime Field at Laravel Nova." mirac sengonul | Sciencx - Wednesday May 5, 2021, https://www.scien.cx/2021/05/05/timezone-for-datetime-field-at-laravel-nova/
HARVARD
mirac sengonul | Sciencx Wednesday May 5, 2021 » Timezone for DateTime Field at Laravel Nova., viewed ,<https://www.scien.cx/2021/05/05/timezone-for-datetime-field-at-laravel-nova/>
VANCOUVER
mirac sengonul | Sciencx - » Timezone for DateTime Field at Laravel Nova. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/05/05/timezone-for-datetime-field-at-laravel-nova/
CHICAGO
" » Timezone for DateTime Field at Laravel Nova." mirac sengonul | Sciencx - Accessed . https://www.scien.cx/2021/05/05/timezone-for-datetime-field-at-laravel-nova/
IEEE
" » Timezone for DateTime Field at Laravel Nova." mirac sengonul | Sciencx [Online]. Available: https://www.scien.cx/2021/05/05/timezone-for-datetime-field-at-laravel-nova/. [Accessed: ]
rf:citation
» Timezone for DateTime Field at Laravel Nova | mirac sengonul | Sciencx | https://www.scien.cx/2021/05/05/timezone-for-datetime-field-at-laravel-nova/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.