Skip to content

Commit

Permalink
Added Publishing File Groups
Browse files Browse the repository at this point in the history
  • Loading branch information
balajidharma committed Jan 14, 2024
1 parent 0c39a74 commit 5389d30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MenuServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ public function boot()
if (app()->runningInConsole()) {
$this->publishes([
__DIR__.'/../config/menu.php' => config_path('menu.php'),
], 'config');
], ['config', 'menu-config', 'admin-core', 'admin-core-config']);

$this->publishes([
__DIR__.'/../database/migrations/create_menu_tables.php.stub' => $this->getMigrationFileName('create_menu_tables.php'),
], 'migrations');
], ['migrations', 'menu-migrations', 'admin-core', 'admin-core-migrations']);
}
}

Expand Down

0 comments on commit 5389d30

Please sign in to comment.