add app url to the config and set it to laravel.dev

This commit is contained in:
Mahmoud Zalt 2015-09-22 13:23:00 +03:00
parent 5674d876f4
commit b0e3cc3c70
2 changed files with 2 additions and 1 deletions

View File

@ -1,5 +1,6 @@
APP_ENV=local
APP_DEBUG=true
APP_URL=http://laravel.dev
APP_KEY=SomeRandomString
CACHE_DRIVER=file

View File

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