GeneaLabs\LaravelCaffeine\Providers\LaravelCaffeineService::boot PHP Method

boot() public method

public boot ( )
    public function boot()
    {
        app('router')->group($this->middlewareGroupExists('web') ? ['middleware' => 'web'] : [], function () {
            require __DIR__ . '/../../routes/web.php';
        });
        $this->publishes([__DIR__ . '/../../config/genealabs-laravel-caffeine.php' => config_path('genealabs-laravel-caffeine.php')], 'genealabs-laravel-caffeine');
    }