Skip to content

Commit

Permalink
feat: Updated config/app.php
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] committed Mar 11, 2024
1 parent 3c9a9b0 commit c006ebc
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
|
*/

'name' => env('APP_NAME', 'Laravel'),
'name' => env('APP_NAME', cache('site_settings.app_name', 'Laravel')),

/*
|--------------------------------------------------------------------------
Expand Down Expand Up @@ -55,9 +55,8 @@
|
*/

'url' => env('APP_URL', 'https://yourdomain.com'),

'asset_url' => env('ASSET_URL'),
'url' => env('APP_URL', cache('site_settings.app_url', 'https://yourdomain.com')),
'asset_url' => env('ASSET_URL', cache('site_settings.asset_url')),

/*
|--------------------------------------------------------------------------
Expand All @@ -70,7 +69,7 @@
|
*/

'timezone' => 'UTC',
'timezone' => cache('site_settings.timezone', 'UTC'),

/*
|--------------------------------------------------------------------------
Expand All @@ -83,7 +82,7 @@
|
*/

'locale' => 'en',
'locale' => cache('site_settings.locale', 'en'),

/*
|--------------------------------------------------------------------------
Expand All @@ -96,7 +95,7 @@
|
*/

'fallback_locale' => 'en_US',
'fallback_locale' => cache('site_settings.fallback_locale', 'en_US'),

/*
|--------------------------------------------------------------------------
Expand All @@ -109,7 +108,7 @@
|
*/

'faker_locale' => 'en_US',
'faker_locale' => cache('site_settings.faker_locale', 'en_US'),

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

0 comments on commit c006ebc

Please sign in to comment.