Allow setting the locale from environment

pull/282/head
Pierre Jaury 2018-06-16 23:00:35 +02:00
rodzic 51723d0ba2
commit a6ae3f2483
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -65,7 +65,7 @@ return [
|
*/
'timezone' => 'UTC',
'timezone' => env('APP_TIMEZONE', 'UTC'),
/*
|--------------------------------------------------------------------------
@ -78,7 +78,7 @@ return [
|
*/
'locale' => 'en',
'locale' => env('APP_LOCALE', 'en'),
/*
|--------------------------------------------------------------------------
@ -91,7 +91,7 @@ return [
|
*/
'fallback_locale' => 'en',
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),
/*
|--------------------------------------------------------------------------