Fix APP_URL being called SITE_URL

This commit is contained in:
Nabeel Shahzad
2021-04-20 23:28:57 -04:00
parent 61739ce266
commit 2545328233
5 changed files with 6 additions and 6 deletions

View File

@@ -22,7 +22,7 @@ class ConfigService extends Service
'APP_LOCALE' => 'en',
'DEBUG_TOOLBAR' => false,
'SITE_NAME' => '',
'SITE_URL' => 'http://phpvms.test',
'APP_URL' => 'http://phpvms.test',
'DB_CONNECTION' => '',
'DB_HOST' => '',
'DB_PORT' => 3306,
@@ -93,7 +93,7 @@ class ConfigService extends Service
'APP_LOCALE' => config('app.locale'),
'DEBUG_TOOLBAR' => config('app.debug_toolbar') ? 'true' : 'false',
'SITE_NAME' => config('app.name'),
'SITE_URL' => config('app.url'),
'APP_URL' => config('app.url'),
'DB_CONNECTION' => config('database.default'),
'DB_HOST' => config('database.connections.mysql.host'),
'DB_PORT' => config('database.connections.mysql.port'),