Make it possible to specify timezone in .env

This commit is contained in:
rabol 2019-12-28 10:38:54 +01:00
parent a22b98129e
commit a63c2f9fd8
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ APP_VERSION=0.1.8
APP_KEY= APP_KEY=
APP_DEBUG=true APP_DEBUG=true
APP_URL=http://localhost APP_URL=http://localhost
APP_TIMEZONE='Asia/Kolkata'
LOG_CHANNEL=stack LOG_CHANNEL=stack
DB_CONNECTION=mysql DB_CONNECTION=mysql

View File

@ -65,7 +65,7 @@ return [
| |
*/ */
'timezone' => 'Asia/Kolkata', 'timezone' => env('APP_TIMEZONE','Asia/Kolkata'),
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------