We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cad5b8c commit e81545fCopy full SHA for e81545f
.env.example
@@ -2,6 +2,7 @@ APP_ENV=production
2
APP_DEBUG=false
3
APP_KEY=SomeRandomString3232RandomString
4
APP_THEME=default
5
+APP_TIMEZONE=UTC
6
7
DB_HOST=localhost
8
DB_PORT=3306
config/app.php
@@ -30,7 +30,7 @@
30
|
31
*/
32
33
- 'url' => ENV('APP_URL', 'http://localhost'),
+ 'url' => env('APP_URL', 'http://localhost'),
34
35
/*
36
|--------------------------------------------------------------------------
@@ -43,7 +43,7 @@
43
44
45
46
- 'timezone' => ENV('APP_TIMEZONE', 'UTC'),
+ 'timezone' => env('APP_TIMEZONE', 'UTC'),
47
48
49
0 commit comments