Nvd\Crud\Providers\NvdCrudServiceProvider::boot PHP Method

boot() public method

Bootstrap the application services.
public boot ( ) : void
return void
    public function boot()
    {
        $this->commands([Crud::class]);
        $this->publishes([__DIR__ . '/../Config/config.php' => config_path('crud.php'), __DIR__ . '/../classic-templates' => base_path('resources/views/vendor/crud/classic-templates'), __DIR__ . '/../single-page-templates' => base_path('resources/views/vendor/crud/single-page-templates')], 'nvd');
    }
NvdCrudServiceProvider