This commit is contained in:
2024-10-17 11:35:56 +03:00
parent 9af44ca95f
commit 5285acae12
28 changed files with 34 additions and 355 deletions

View File

@ -22,7 +22,7 @@ class ModuleShop extends Model
protected $table = "module_shop";
protected $fillable = ['name', 'slug', 'version', 'description', 'author', 'status', 'path_to_archive', 'dependence'];
protected $fillable = ['name', 'slug', 'version', 'description', 'author', 'status', 'dependence'];
public static function labels(): array
{
@ -33,7 +33,6 @@ class ModuleShop extends Model
'author' => 'Автор',
'status' => 'Статус',
'slug' => 'Slug',
'path_to_archive' => 'Путь к файлу модуля',
'dependence' => 'Зависимости',
];
}