File manager - Edit - /home/linknsbh/cecil-hotel.net/vendor/botble/platform/dashboard/src/Providers/DashboardServiceProvider.php
Back
<?php namespace Botble\Dashboard\Providers; use Botble\Base\Facades\DashboardMenu; use Botble\Base\Supports\ServiceProvider; use Botble\Base\Traits\LoadAndPublishDataTrait; use Botble\Dashboard\Models\DashboardWidget; use Botble\Dashboard\Models\DashboardWidgetSetting; use Botble\Dashboard\Repositories\Eloquent\DashboardWidgetRepository; use Botble\Dashboard\Repositories\Eloquent\DashboardWidgetSettingRepository; use Botble\Dashboard\Repositories\Interfaces\DashboardWidgetInterface; use Botble\Dashboard\Repositories\Interfaces\DashboardWidgetSettingInterface; /** * @since 02/07/2016 09:50 AM */ class DashboardServiceProvider extends ServiceProvider { use LoadAndPublishDataTrait; public function register(): void { $this->app->bind(DashboardWidgetInterface::class, function () { return new DashboardWidgetRepository(new DashboardWidget()); }); $this->app->bind(DashboardWidgetSettingInterface::class, function () { return new DashboardWidgetSettingRepository(new DashboardWidgetSetting()); }); } public function boot(): void { $this ->setNamespace('core/dashboard') ->loadHelpers() ->loadRoutes() ->loadAndPublishViews() ->loadAndPublishTranslations() ->publishAssets() ->loadMigrations(); DashboardMenu::default()->beforeRetrieving(function () { DashboardMenu::make() ->registerItem([ 'id' => 'cms-core-dashboard', 'priority' => -9999, 'name' => 'core/base::layouts.dashboard', 'icon' => 'ti ti-home', 'route' => 'dashboard.index', 'permissions' => false, ]); }); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 0.8 |
proxy
|
phpinfo
|
Settings