Laravel changing timezone not reflecting the correct time
Just do this:
'timezone' => 'Asia/Singapore'
in config/app.php
file and run this 3 command:
php artisan cache:clear
php artisan view:clear
and
php artisan config:cache
Hope this helps you!!
Add this in config/app.php
file:
'timezone' => 'Asia/Singapore'
After, run this command:
php artisan config:cache