im in laravel 8 and my config.php is :
'timezone' => 'Asia/Tehran',
now the DST ( Daylight Saving Time ) is disabled in my country ( Iran ). but Carbon in Laravel Show it with DST what is solution
im in laravel 8 and my config.php is :
'timezone' => 'Asia/Tehran',
now the DST ( Daylight Saving Time ) is disabled in my country ( Iran ). but Carbon in Laravel Show it with DST what is solution
you should first add this to your app.php (config file)
'disable_carbon_auto_create_timezone' => true,
then add the mentioned code to the app.php (config file)
'timezone' => 'Asia/Tehran',
please make sure to run
php artisan config:clear
this should work for you