APP_URL added to Environment Configuration
This commit is contained in:
parent
770f8a7453
commit
278c41887c
|
@ -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