File manager - Edit - /home/linknsbh/cecil-hotel.net/vendor/botble/installer/src/Providers/InstallerServiceProvider.php
Back
<?php namespace Botble\Installer\Providers; use Botble\Base\Events\FinishedSeederEvent; use Botble\Base\Events\UpdatedEvent; use Botble\Base\Facades\BaseHelper; use Botble\Base\Supports\ServiceProvider; use Botble\Base\Traits\LoadAndPublishDataTrait; use Botble\Installer\Http\Middleware\CheckIfInstalledMiddleware; use Botble\Installer\Http\Middleware\CheckIfInstallingMiddleware; use Botble\Installer\Http\Middleware\RedirectIfNotInstalledMiddleware; use Carbon\Carbon; use Illuminate\Routing\Events\RouteMatched; class InstallerServiceProvider extends ServiceProvider { use LoadAndPublishDataTrait; public function boot(): void { $this ->setNamespace('packages/installer') ->loadHelpers() ->loadAndPublishConfigurations('installer') ->loadAndPublishTranslations() ->loadAndPublishViews() ->loadRoutes() ->publishAssets(); $this->app['events']->listen(RouteMatched::class, function () { if (defined('INSTALLED_SESSION_NAME')) { $router = $this->app->make('router'); $router->middlewareGroup('install', [CheckIfInstalledMiddleware::class]); $router->middlewareGroup('installing', [CheckIfInstallingMiddleware::class]); $router->pushMiddlewareToGroup('web', RedirectIfNotInstalledMiddleware::class); } }); $this->app['events']->listen([UpdatedEvent::class, FinishedSeederEvent::class], function () { BaseHelper::saveFileData(storage_path(INSTALLED_SESSION_NAME), Carbon::now()->toDateTimeString()); }); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 0.21 |
proxy
|
phpinfo
|
Settings