Files
xstore/inc/Hura8/Components/Brand/Model/BrandLanguageModel.php

20 lines
369 B
PHP
Raw Permalink Normal View History

2025-10-04 11:46:59 +07:00
<?php
namespace Hura8\Components\Brand\Model;
use Hura8\System\Model\EntityLanguageModel;
use Hura8\Interfaces\EntityType;
class BrandLanguageModel extends EntityLanguageModel
{
protected $richtext_fields = [
'description',
];
public function __construct() {
parent::__construct(EntityType::BRAND, '', $this->richtext_fields);
}
}