OpenSkill\Datatable\DatatableServiceProvider::boot PHP Метод

boot() публичный Метод

Perform post-registration booting of services.
public boot ( ) : void
Результат void
    public function boot()
    {
        // load views
        $this->loadViewsFrom(__DIR__ . '/../../views', 'datatable');
        // publish views if the user wants to
        $this->publishes([__DIR__ . '/../../views' => base_path('resources/views/vendor/datatable')]);
        $this->mergeConfigFrom(__DIR__ . '/../../config/datatable.php', 'datatable');
        // publish the configs if the user wants to
        $this->publishes([__DIR__ . '/../../config/datatable.php' => config_path('datatable.php')]);
    }
DatatableServiceProvider