Viewing file: WebFormServiceProvider.php (1.07 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Webkul\WebForm\Providers;
use Illuminate\Support\Facades\Blade; use Illuminate\Support\ServiceProvider;
class WebFormServiceProvider extends ServiceProvider { /** * Bootstrap services. */ public function boot(): void { $this->loadRoutesFrom(__DIR__.'/../Routes/routes.php');
$this->loadTranslationsFrom(__DIR__.'/../Resources/lang', 'web_form');
$this->loadViewsFrom(__DIR__.'/../Resources/views', 'web_form');
Blade::anonymousComponentPath(__DIR__.'/../Resources/views/components');
$this->loadMigrationsFrom(__DIR__.'/../Database/Migrations');
$this->app->register(ModuleServiceProvider::class); }
/** * Register services. */ public function register(): void { $this->registerConfig(); }
/** * Register package config. */ protected function registerConfig(): void { $this->mergeConfigFrom(dirname(__DIR__).'/Config/menu.php', 'menu.admin');
$this->mergeConfigFrom(dirname(__DIR__).'/Config/acl.php', 'acl'); } }
|