SebastiaanLuca\Router\RouterServiceProvider::boot PHP Method

boot() public method

Define your route model bindings, pattern filters, etc using the Bootstrap router.
public boot ( )
    public function boot()
    {
        // Create a router that defines route patterns and whatnot
        $this->app->make(BootstrapRouter::class);
        // Map user-defined routers
        $this->registerUserRouters();
    }