DaveJamesMiller\Breadcrumbs\ServiceProvider::boot PHP Method

boot() public method

Bootstrap the application events.
public boot ( ) : void
return void
    public function boot()
    {
        $configFile = __DIR__ . '/../config/breadcrumbs.php';
        $this->mergeConfigFrom($configFile, 'breadcrumbs');
        $this->publishes([$configFile => config_path('breadcrumbs.php')]);
        $this->registerBreadcrumbs();
    }