Merge pull request #3661 from AdenFraser/AppUrlEnv

APP_URL added to Environment Configuration
This commit is contained in:
Taylor Otwell 2016-02-17 20:29:42 -06:00
commit e4f7ff9ef1
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -39,7 +39,7 @@ return [
|
*/
'url' => 'http://localhost',
'url' => env('APP_URL', 'http://localhost'),
/*
|--------------------------------------------------------------------------