Skip to content

Commit

Permalink
- update service provider
Browse files Browse the repository at this point in the history
- remove config file
  • Loading branch information
manusiakemos committed May 11, 2024
1 parent 5d2f630 commit 7771649
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/WirecrudServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ public function boot(): void
// Publish your stub file to the user's application if needed
$this->publishes([
__DIR__.'/Console/stubs' => base_path('stubs/vendor/manusiakemos/wirecrud'),
], 'wirecrud-stubs');
], 'wirecrud:stubs');

$this->publishes([
__DIR__.'/../config/config.php' => config_path('wirecrud.php'),
], 'config');
// $this->publishes([
// __DIR__.'/../config/config.php' => config_path('wirecrud.php'),
// ], 'config');

// Publishing the views.
$this->publishes([
__DIR__.'/../resources/views' => resource_path('views/vendor/wirecrud'),
], 'views');
], 'wirecrud:views');

// Publishing assets.
/*$this->publishes([
Expand Down

0 comments on commit 7771649

Please sign in to comment.