formatting

This commit is contained in:
Taylor Otwell 2020-01-24 07:49:20 -06:00
parent 550282b094
commit 91dd1f61cd
1 changed files with 4 additions and 3 deletions

View File

@ -35,14 +35,15 @@
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Check Compiled Views | Blade View Modification Checking
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| |
| On every request the framework will check to see if a view has expired | On every request the framework will check to see if a view has expired
| to determine if it needs to be recompiled. If you are in production | to determine if it needs to be recompiled. If you are in production
| and precompiling your views we can skip this check to save time. | and precompiling views this feature may be disabled to save time.
| |
*/ */
'expires' => env('APP_ENV') !== 'production',
'expires' => env('VIEW_CHECK_EXPIRATION', true),
]; ];