We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70503b7 commit 0828297Copy full SHA for 0828297
src/Features/SupportScriptsAndAssets/SupportScriptsAndAssets.php
@@ -28,7 +28,7 @@ public static function getUniqueBladeCompileTimeKey()
28
// from using load-balancers and such.
29
// Therefore, we create a key based on the currently compiling view path and
30
// number of already compiled directives here...
31
- $viewPath = crc32(app('blade.compiler')->getPath());
+ $viewPath = crc32(app('blade.compiler')->getPath() ?? '');
32
33
if (! isset(static::$countersByViewPath[$viewPath])) static::$countersByViewPath[$viewPath] = 0;
34
0 commit comments