Commit e4f7ff9e authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #3661 from AdenFraser/AppUrlEnv

APP_URL added to Environment Configuration
parents 770f8a74 278c4188
APP_ENV=local APP_ENV=local
APP_DEBUG=true APP_DEBUG=true
APP_KEY=SomeRandomString APP_KEY=SomeRandomString
APP_URL=http://localhost
DB_HOST=127.0.0.1 DB_HOST=127.0.0.1
DB_DATABASE=homestead DB_DATABASE=homestead
......
...@@ -39,7 +39,7 @@ return [ ...@@ -39,7 +39,7 @@ return [
| |
*/ */
'url' => 'http://localhost', 'url' => env('APP_URL', 'http://localhost'),
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment