Merge pull request #4204 from mdavis1982/make-app-name-configurable

Make app name configurable in environment file
This commit is contained in:
Taylor Otwell 2017-04-03 15:13:45 -05:00 committed by GitHub
commit d870a0c2ce
2 changed files with 2 additions and 1 deletions

View File

@ -1,3 +1,4 @@
APP_NAME=Laravel
APP_ENV=local
APP_KEY=
APP_DEBUG=true

View File

@ -12,7 +12,7 @@
| any other location as required by the application or its packages.
*/
'name' => 'Laravel',
'name' => env('APP_NAME', 'Laravel'),
/*
|--------------------------------------------------------------------------