Skip to content

Commit

Permalink
🔧 Use env variables for app locale by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Log1x committed May 16, 2024
1 parent b4546dd commit 655f62b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
|
*/

'locale' => 'en',
'locale' => env('APP_LOCALE', 'en'),

/*
|--------------------------------------------------------------------------
Expand All @@ -39,7 +39,7 @@
|
*/

'fallback_locale' => 'en',
'fallback_locale' => env('APP_FALLBACK_LOCALE', 'en'),

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit 655f62b

Please sign in to comment.