I am using Lumen framework. How can I change Timezone to Europe/Paris CEST?
I added a varaible in my .env
file:
APP_TIMEZONE=Europe/Pari
After changing app.php, make sure you run:
php artisan config:clear
This is needed to clear the cache of config settings. If you notice that your timestamps are still wrong after changing the timezone in your app.php file, then running the above command should refresh everything, and your new timezone should be effective.