module shop crud

This commit is contained in:
2024-10-16 16:06:25 +03:00
parent b7ac923261
commit 209b1e3f29
15 changed files with 414 additions and 22 deletions

View File

@ -4,6 +4,17 @@ namespace app\modules\module_shop\models;
use Illuminate\Database\Eloquent\Model;
/**
* @property int $id
* @property string $name
* @property string $slug
* @property string $version
* @property string $description
* @property string $author
* @property int $status
* @property string $path_to_archive
* @property string $dependence
*/
class ModuleShop extends Model
{
const DISABLE_STATUS = 0;