X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/restate/platform/core/dashboard/src/Providers
home
/
gfecatvj
/
sites
/
restate
/
platform
/
core
/
dashboard
/
src
/
Providers
/
📁
..
📄
DashboardServiceProvider.php
(2.22 KB)
Editing: DashboardServiceProvider.php
<?php namespace Botble\Dashboard\Providers; use Botble\Base\Supports\Helper; use Botble\Base\Traits\LoadAndPublishDataTrait; use Botble\Dashboard\Models\DashboardWidget; use Botble\Dashboard\Models\DashboardWidgetSetting; use Botble\Dashboard\Repositories\Caches\DashboardWidgetCacheDecorator; use Botble\Dashboard\Repositories\Caches\DashboardWidgetSettingCacheDecorator; use Botble\Dashboard\Repositories\Eloquent\DashboardWidgetRepository; use Botble\Dashboard\Repositories\Eloquent\DashboardWidgetSettingRepository; use Botble\Dashboard\Repositories\Interfaces\DashboardWidgetInterface; use Botble\Dashboard\Repositories\Interfaces\DashboardWidgetSettingInterface; use Illuminate\Routing\Events\RouteMatched; use Illuminate\Support\Facades\Event; use Illuminate\Support\ServiceProvider; /** * @since 02/07/2016 09:50 AM */ class DashboardServiceProvider extends ServiceProvider { use LoadAndPublishDataTrait; public function register() { $this->app->bind(DashboardWidgetInterface::class, function () { return new DashboardWidgetCacheDecorator( new DashboardWidgetRepository(new DashboardWidget) ); }); $this->app->bind(DashboardWidgetSettingInterface::class, function () { return new DashboardWidgetSettingCacheDecorator( new DashboardWidgetSettingRepository(new DashboardWidgetSetting) ); }); Helper::autoload(__DIR__ . '/../../helpers'); } public function boot() { $this->setNamespace('core/dashboard') ->loadRoutes(['web']) ->loadAndPublishViews() ->loadAndPublishTranslations() ->publishAssets() ->loadMigrations(); Event::listen(RouteMatched::class, function () { dashboard_menu() ->registerItem([ 'id' => 'cms-core-dashboard', 'priority' => 0, 'parent_id' => null, 'name' => 'core/base::layouts.dashboard', 'icon' => 'fa fa-home', 'url' => route('dashboard.index'), 'permissions' => [], ]); }); } }
Upload File
Create Folder