Rubenwouters\CrmLauncher\CrmLauncherServiceProvider::boot PHP Method

boot() public method

Bootstrap the application services.
public boot ( ) : void
return void
    public function boot()
    {
        if (!$this->app->routesAreCached()) {
            require __DIR__ . '/routes.php';
        }
        $this->loadViewsFrom(__DIR__ . '/../resources/views', 'crm-launcher');
        $this->loadTranslationsFrom(__DIR__ . '/../lang', 'crm-launcher');
        $this->publish();
        $this->registerCommands();
    }