File manager - Edit - /home/linknsbh/cecil-hotel.net/platform/plugins/testimonial/src/Providers/TestimonialServiceProvider.php
Back
<?php namespace Botble\Testimonial\Providers; use Botble\Base\Facades\DashboardMenu; use Botble\Base\Supports\ServiceProvider; use Botble\Base\Traits\LoadAndPublishDataTrait; use Botble\LanguageAdvanced\Supports\LanguageAdvancedManager; use Botble\Testimonial\Models\Testimonial; use Botble\Testimonial\Repositories\Eloquent\TestimonialRepository; use Botble\Testimonial\Repositories\Interfaces\TestimonialInterface; class TestimonialServiceProvider extends ServiceProvider { use LoadAndPublishDataTrait; public function register(): void { $this->app->bind(TestimonialInterface::class, function () { return new TestimonialRepository(new Testimonial()); }); } public function boot(): void { $this ->setNamespace('plugins/testimonial') ->loadHelpers() ->loadAndPublishConfigurations(['permissions']) ->loadMigrations() ->loadAndPublishTranslations() ->loadRoutes(); if (defined('LANGUAGE_MODULE_SCREEN_NAME') && defined('LANGUAGE_ADVANCED_MODULE_SCREEN_NAME')) { LanguageAdvancedManager::registerModule(Testimonial::class, [ 'name', 'content', 'company', ]); } DashboardMenu::beforeRetrieving(function () { DashboardMenu::make() ->registerItem([ 'id' => 'cms-plugins-testimonial', 'priority' => 5, 'name' => 'plugins/testimonial::testimonial.name', 'icon' => 'ti ti-user-star', 'url' => route('testimonial.index'), 'permissions' => ['testimonial.index'], ]); }); } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.31 | Generation time: 2.8 |
proxy
|
phpinfo
|
Settings