Merge pull request #3661 from AdenFraser/AppUrlEnv
APP_URL added to Environment Configuration
This commit is contained in:
commit
e4f7ff9ef1
|
@ -1,6 +1,7 @@
|
|||
APP_ENV=local
|
||||
APP_DEBUG=true
|
||||
APP_KEY=SomeRandomString
|
||||
APP_URL=http://localhost
|
||||
|
||||
DB_HOST=127.0.0.1
|
||||
DB_DATABASE=homestead
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
|
|
||||
*/
|
||||
|
||||
'url' => 'http://localhost',
|
||||
'url' => env('APP_URL', 'http://localhost'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue