We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8d8d83 commit 22d268cCopy full SHA for 22d268c
src/WhereIsLucas/LaravelBootstrapToasts/ToastServiceProvider.php
@@ -34,9 +34,11 @@ public function boot()
34
$this->loadViewsFrom(__DIR__ . '/../../views', 'laravel-bootstrap-toasts');
35
36
$this->publishes([
37
- __DIR__ . '/../../views' => base_path('resources/views/vendor/laravel-boostrap-toasts'),
+ __DIR__ . '/../../views' => base_path('resources/views/vendor/laravel-boostrap-toasts')
38
+ ],'views');
39
+ $this->publishes([
40
__DIR__.'/../../config.php' => config_path('laravel-bootstrap-toasts.php')
- ]);
41
+ ],'config');
42
43
}
44
0 commit comments