Change Timezone in Lumen or Laravel 5

前端 未结 15 1386
逝去的感伤
逝去的感伤 2020-11-29 02:56

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         


        
15条回答
  •  渐次进展
    2020-11-29 03:47

    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.

提交回复
热议问题