Make app name configurable in environment file

This commit is contained in:
Matthew Davis 2017-04-03 20:07:41 +01:00
parent 4882961b41
commit 323e553f33
2 changed files with 2 additions and 1 deletions

View File

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

View File

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