We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e39c24 commit 03a5705Copy full SHA for 03a5705
1 file changed
src/TabServiceProvider.php
@@ -35,23 +35,23 @@ public function boot(): void
35
36
$this->publishes([
37
__DIR__.'/../config/tab.php' => config_path('fintech/tab.php'),
38
- ]);
+ ], 'fintech-tab-config');
39
40
$this->loadMigrationsFrom(__DIR__.'/../database/migrations');
41
42
$this->loadTranslationsFrom(__DIR__.'/../lang', 'tab');
43
44
45
__DIR__.'/../lang' => $this->app->langPath('vendor/tab'),
46
+ ], 'fintech-tab-lang');
47
48
$this->loadViewsFrom(__DIR__.'/../resources/views', 'tab');
49
50
$this->loadRoutesFrom(__DIR__.'/../routes/api.php');
51
52
53
__DIR__.'/../resources/views' => resource_path('views/vendor/tab'),
54
+ ], 'fintech-tab-views');
55
56
if ($this->app->runningInConsole()) {
57
$this->commands([
0 commit comments