JeroenNoten\LaravelAdminLte\ServiceProvider::boot PHP Method

boot() public method

public boot ( Illuminate\Contracts\View\Factory $view, Illuminate\Contracts\Events\Dispatcher $events, Illuminate\Contracts\Config\Repository $config )
$view Illuminate\Contracts\View\Factory
$events Illuminate\Contracts\Events\Dispatcher
$config Illuminate\Contracts\Config\Repository
    public function boot(Factory $view, Dispatcher $events, Repository $config)
    {
        $this->loadViews();
        $this->loadTranslations();
        $this->publishConfig();
        $this->publishAssets();
        $this->registerCommands();
        $this->registerViewComposers($view);
        static::registerMenu($events, $config);
    }