CRUD tag entity

This commit is contained in:
2024-11-25 16:58:01 +03:00
parent 745707ee09
commit 4920d3b08e
15 changed files with 327 additions and 17 deletions

View File

@ -29,7 +29,8 @@ class TagModule extends Module
*/
public function init(): void
{
$this->migrationService->runAtPath("{KERNEL_APP_MODULES}/tag/migrations");
$this->migrationService->runAtPath("{KERNEL_APP_MODULES}/tag/migrations/tag");
// $this->migrationService->runAtPath("{KERNEL_APP_MODULES}/tag/migrations/tag_entity");
$this->menuService->createItem([
"label" => "Тэги",
@ -80,6 +81,6 @@ class TagModule extends Module
public function getInputs(string $entity, Model $model)
{
Debug::dd($tag);
// Debug::dd($tag);
}
}