I am changing the timezone into Asia/Singapore at config/app.php, but when I try to do a date(\"Y-m-d H:i:s\"); the result is still in
Asia/Singapore
config/app.php
date(\"Y-m-d H:i:s\");
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 view:clear
php artisan config:cache
Hope this helps you!!