From 2d7c945586e4d67a671f41948a323fad7aa085c1 Mon Sep 17 00:00:00 2001 From: Jimbolino Date: Sun, 8 Aug 2021 04:32:07 +0200 Subject: [PATCH] Update Compiler.php dont recompile view if .blade.php has same mtime as cache file --- src/Illuminate/View/Compilers/Compiler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/View/Compilers/Compiler.php b/src/Illuminate/View/Compilers/Compiler.php index 2a943e0f6309..067b1eb87d84 100755 --- a/src/Illuminate/View/Compilers/Compiler.php +++ b/src/Illuminate/View/Compilers/Compiler.php @@ -68,7 +68,7 @@ public function isExpired($path) return true; } - return $this->files->lastModified($path) >= + return $this->files->lastModified($path) > $this->files->lastModified($compiled); }