add modules seeeders to base apps

This commit is contained in:
2024-11-05 18:40:23 +05:00
parent 158569663a
commit db69904f38
19 changed files with 69 additions and 76 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace App\Modules;
class BaseModule
{
public function __construct(
public string $path,
public string $name,
public bool $enabled,
) {}
}