Add APP_TIMEZONE env variable

This commit is contained in:
Jovan Jovanovic 2021-07-28 18:29:06 +02:00
parent f0a31fd4e2
commit 98df07269f
2 changed files with 2 additions and 1 deletions

View file

@ -3,6 +3,7 @@ APP_ENV=production
APP_KEY=
APP_DEBUG=false
APP_URL=http://localhost
APP_TIMEZONE=UTC
DB_CONNECTION=mysql
DB_HOST=127.0.0.1

View file

@ -67,7 +67,7 @@ return [
|
*/
'timezone' => 'UTC',
'timezone' => env('APP_TIMEZONE', 'UTC'),
/*
|--------------------------------------------------------------------------