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\");
Add this in config/app.php file:
'timezone' => 'Asia/Singapore'
After, run this command:
php artisan config:cache