module construct, add some templates

This commit is contained in:
2024-12-12 11:58:55 +03:00
parent a9951102c0
commit 1e566481f7
17 changed files with 215 additions and 19 deletions

View File

@ -118,7 +118,7 @@ class ModuleController extends ConsoleController
$moduleService->createControllers($slug);
$this->out->r("Контроллеры созданы", 'green');
$moduleService->createRouts($slug);
$moduleService->createRoutes($slug);
$this->out->r("Роуты созданы", 'green');
$moduleService->createModuleClassFiles($slug, $label);
@ -130,6 +130,12 @@ class ModuleController extends ConsoleController
$moduleService->createFormModel($slug);
$this->out->r("Форма валидации для модели создана", 'green');
$moduleService->createService($slug);
$this->out->r("Сервис создан", 'green');
$moduleService->createViews($slug);
$this->out->r("Представления созданы", 'green');
}
}