Skip to content

Commit 03a5705

Browse files
committed
config tage in publish added
1 parent 2e39c24 commit 03a5705

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/TabServiceProvider.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,23 +35,23 @@ public function boot(): void
3535

3636
$this->publishes([
3737
__DIR__.'/../config/tab.php' => config_path('fintech/tab.php'),
38-
]);
38+
], 'fintech-tab-config');
3939

4040
$this->loadMigrationsFrom(__DIR__.'/../database/migrations');
4141

4242
$this->loadTranslationsFrom(__DIR__.'/../lang', 'tab');
4343

4444
$this->publishes([
4545
__DIR__.'/../lang' => $this->app->langPath('vendor/tab'),
46-
]);
46+
], 'fintech-tab-lang');
4747

4848
$this->loadViewsFrom(__DIR__.'/../resources/views', 'tab');
4949

5050
$this->loadRoutesFrom(__DIR__.'/../routes/api.php');
5151

5252
$this->publishes([
5353
__DIR__.'/../resources/views' => resource_path('views/vendor/tab'),
54-
]);
54+
], 'fintech-tab-views');
5555

5656
if ($this->app->runningInConsole()) {
5757
$this->commands([

0 commit comments

Comments
 (0)