APP_URL added to Environment Configuration

This commit is contained in:
Aden Fraser 2016-02-17 23:28:21 +00:00
parent 770f8a7453
commit 278c41887c
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 @@
|
*/
'url' => 'http://localhost',
'url' => env('APP_URL', 'http://localhost'),
/*
|--------------------------------------------------------------------------