Allow setting the locale from environment

This commit is contained in:
Pierre Jaury 2018-06-16 23:00:35 +02:00
parent 51723d0ba2
commit a6ae3f2483

View file

@ -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'),
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------