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.
2 parents 3600edd + 2695c2a commit f3a9b0bCopy full SHA for f3a9b0b
src/ZiggyServiceProvider.php
@@ -17,7 +17,9 @@ public function boot()
17
$this->app->afterResolving('blade.compiler', fn (BladeCompiler $blade) => $this->registerDirective($blade));
18
}
19
20
- Event::listen(RequestReceived::class, fn () => BladeRouteGenerator::$generated = false);
+ Event::listen(RequestReceived::class, function () {
21
+ BladeRouteGenerator::$generated = false;
22
+ });
23
24
if ($this->app->runningInConsole()) {
25
$this->commands(CommandRouteGenerator::class);
0 commit comments