61 lines
1.4 KiB
PHP
61 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Webkul\WebForm\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Illuminate\Routing\Router;
|
|
use Illuminate\Support\Facades\Event;
|
|
|
|
class WebFormServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot(Router $router)
|
|
{
|
|
$this->loadRoutesFrom(__DIR__ . '/../Http/routes.php');
|
|
|
|
$this->loadTranslationsFrom(__DIR__ . '/../Resources/lang', 'web_form');
|
|
|
|
$this->publishes([
|
|
__DIR__ . '/../../publishable/assets' => public_path('vendor/webkul/web-form/assets'),
|
|
], 'public');
|
|
|
|
$this->loadViewsFrom(__DIR__ . '/../Resources/views', 'web_form');
|
|
|
|
$this->loadMigrationsFrom(__DIR__ . '/../Database/Migrations');
|
|
|
|
Event::listen('admin.layout.head', function ($viewRenderEventManager) {
|
|
$viewRenderEventManager->addTemplate('web_form::layouts.style');
|
|
});
|
|
|
|
$this->app->register(ModuleServiceProvider::class);
|
|
}
|
|
|
|
/**
|
|
* Register services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function register()
|
|
{
|
|
$this->registerConfig();
|
|
}
|
|
|
|
/**
|
|
* Register package config.
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function registerConfig()
|
|
{
|
|
$this->mergeConfigFrom(
|
|
dirname(__DIR__) . '/Config/menu.php', 'menu.admin'
|
|
);
|
|
|
|
$this->mergeConfigFrom(dirname(__DIR__) . '/Config/acl.php', 'acl');
|
|
}
|
|
}
|