From 91dd1f61cdd3c7949593a4435dff8b77322761f2 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 24 Jan 2020 07:49:20 -0600 Subject: [PATCH] formatting --- config/view.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/config/view.php b/config/view.php index 9b7bddfc..bc73d32b 100644 --- a/config/view.php +++ b/config/view.php @@ -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 | 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), ];