Skip to content

Commit 22d268c

Browse files
author
Lucas Houssa
committed
fixed bug when publishing with tags
1 parent d8d8d83 commit 22d268c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/WhereIsLucas/LaravelBootstrapToasts/ToastServiceProvider.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,11 @@ public function boot()
3434
$this->loadViewsFrom(__DIR__ . '/../../views', 'laravel-bootstrap-toasts');
3535

3636
$this->publishes([
37-
__DIR__ . '/../../views' => base_path('resources/views/vendor/laravel-boostrap-toasts'),
37+
__DIR__ . '/../../views' => base_path('resources/views/vendor/laravel-boostrap-toasts')
38+
],'views');
39+
$this->publishes([
3840
__DIR__.'/../../config.php' => config_path('laravel-bootstrap-toasts.php')
39-
]);
41+
],'config');
4042

4143
}
4244

0 commit comments

Comments
 (0)