z-song / laravel-admin

Build a full-featured administrative interface in ten minutes
https://laravel-admin.org
MIT License
11.14k stars 2.81k forks source link

The saved date and the edit page date do not match. #5855

Open jesnagifto opened 4 months ago

jesnagifto commented 4 months ago

Steps To Reproduce:

optiktr commented 4 months ago

Firstly, you need set to timezone on laravel. You saw diffrent times because you didnt set timezon. 'timezone' => 'Europe/Istanbul', //For Turkey...

config/app.php 

'timezone' => 'UTC', olan kısmı

'timezone' => 'Europe/Istanbul', 

$form->date('calling_reminder', __('Calling Reminder'))->format('DD-MM-YYYY');

jesnagifto commented 4 months ago

i added this, but can not work