feat: crud

This commit is contained in:
2024-04-19 19:03:17 +02:00
parent 4eae25ab02
commit 8af5aebfe3
6 changed files with 173 additions and 26 deletions

View File

@@ -30,6 +30,7 @@ class ServiceProvider extends \Illuminate\Support\ServiceProvider implements Def
$this->commands([
Console\Install::class,
Console\MakeMigrations::class,
Console\MakeCRUD::class,
//...
]);
}
@@ -44,6 +45,7 @@ class ServiceProvider extends \Illuminate\Support\ServiceProvider implements Def
return [
Console\Install::class,
Console\MakeMigrations::class,
Console\MakeCRUD::class,
];
}
}