install cmd

This commit is contained in:
2024-04-08 17:11:35 +02:00
parent 715de77a69
commit 027c680dc4
3 changed files with 60 additions and 4 deletions

View File

@@ -28,6 +28,7 @@ class ServiceProvider extends \Illuminate\Support\ServiceProvider implements Def
}
$this->commands([
Console\Install::class,
Console\MakeMigrations::class,
//...
]);
@@ -41,6 +42,7 @@ class ServiceProvider extends \Illuminate\Support\ServiceProvider implements Def
public function provides()
{
return [
Console\Install::class,
Console\MakeMigrations::class,
];
}