Laracasts\Flash\FlashServiceProvider::boot PHP Method

boot() public method

Bootstrap the application events.
public boot ( ) : void
return void
    public function boot()
    {
        $this->loadViewsFrom(__DIR__ . '/../../views', 'flash');
        $this->publishes([__DIR__ . '/../../views' => base_path('resources/views/vendor/flash')]);
    }
FlashServiceProvider