Skip to content

Commit

Permalink
Add command for xeed:nova command
Browse files Browse the repository at this point in the history
  • Loading branch information
cable8mm committed Jan 4, 2025
1 parent 0da0c51 commit 2121ca3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Laravel/XeedServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
use Cable8mm\Xeed\Laravel\Commands\GenerateFakerSeedersCommand;
use Cable8mm\Xeed\Laravel\Commands\GenerateMigrationsCommand;
use Cable8mm\Xeed\Laravel\Commands\GenerateModelsCommand;
use Cable8mm\Xeed\Laravel\Commands\GenerateNovaCommand;
use Cable8mm\Xeed\Laravel\Commands\GenerateRelationsCommand;
use Cable8mm\Xeed\Laravel\Commands\GenerateSeedersCommand;
use Cable8mm\Xeed\Laravel\Commands\ImportXeedCommand;
Expand All @@ -25,15 +26,16 @@ public function boot()
// php artisan vendor:publish --tag=xeed-sql
if ($this->app->runningInConsole()) {
$this->commands([
CleanCommand::class,
GenerateDatabaseSeederCommand::class,
GenerateFactoriesCommand::class,
GenerateMigrationsCommand::class,
GenerateModelsCommand::class,
GenerateSeedersCommand::class,
ImportXeedCommand::class,
CleanCommand::class,
GenerateFakerSeedersCommand::class,
GenerateRelationsCommand::class,
ImportXeedCommand::class,
GenerateNovaCommand::class,
]);
}
}
Expand Down

0 comments on commit 2121ca3

Please sign in to comment.