File manager - Edit - /home/linknsbh/cecil-hotel.net/vendor/botble/api/src/Providers/ApiServiceProvider.php
Back
<?php namespace Botble\Api\Providers; use Botble\Api\Facades\ApiHelper; use Botble\Api\Http\Middleware\ForceJsonResponseMiddleware; use Botble\Base\Facades\DashboardMenu; use Botble\Base\Facades\PanelSectionManager; use Botble\Base\PanelSections\PanelSectionItem; use Botble\Base\Supports\ServiceProvider; use Botble\Base\Traits\LoadAndPublishDataTrait; use Botble\Setting\PanelSections\SettingCommonPanelSection; use Illuminate\Foundation\AliasLoader; use Illuminate\Routing\Events\RouteMatched; use Illuminate\Support\Facades\File; use Illuminate\Support\Str; use ReflectionClass; class ApiServiceProvider extends ServiceProvider { use LoadAndPublishDataTrait; public function register(): void { if (class_exists('ApiHelper')) { AliasLoader::getInstance()->alias('ApiHelper', ApiHelper::class); } } public function boot(): void { $this ->setNamespace('packages/api') ->loadRoutes() ->loadAndPublishConfigurations(['api', 'permissions']) ->loadAndPublishTranslations() ->loadMigrations() ->loadAndPublishViews(); if (ApiHelper::enabled()) { $this->loadRoutes(['api']); } $this->app['events']->listen(RouteMatched::class, function () { if (ApiHelper::enabled()) { $this->app['router']->pushMiddlewareToGroup('api', ForceJsonResponseMiddleware::class); } if (version_compare('7.0.0', get_core_version(), '>=')) { DashboardMenu::registerItem([ 'id' => 'cms-packages-api', 'priority' => 9999, 'parent_id' => 'cms-core-settings', 'name' => 'packages/api::api.settings', 'icon' => null, 'url' => route('api.settings'), 'permissions' => ['api.settings'], ]); } else { PanelSectionManager::default() ->registerItem( SettingCommonPanelSection::class, fn () => PanelSectionItem::make('settings.common.api') ->setTitle(trans('packages/api::api.settings')) ->withDescription(trans('packages/api::api.settings_description')) ->withIcon('ti ti-api') ->withPriority(110) ->withRoute('api.settings') ); } }); $this->app->booted(function () { config([ 'scribe.routes.0.match.prefixes' => ['api/*'], 'scribe.routes.0.apply.headers' => [ 'Authorization' => 'Bearer {token}', 'Api-Version' => 'v1', ], ]); }); } protected function getPath(string $path = null): string { return __DIR__ . '/../..' . ($path ? '/' . ltrim($path, '/') : ''); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 0.9 |
proxy
|
phpinfo
|
Settings