product attributes

This commit is contained in:
2025-04-05 02:06:23 -07:00
parent 4e6b7ca1ac
commit bb1dab1f43
12 changed files with 319 additions and 12 deletions

View File

@@ -14,6 +14,7 @@ use Cake\ORM\Entity;
* @property \CakeProducts\Model\Enum\ProductProductTypeId $product_type_id
*
* @property \CakeProducts\Model\Entity\ProductCategory $product_category
* @property \CakeProducts\Model\Entity\ProductAttribute[] $product_attributes
*/
class Product extends Entity
{
@@ -31,5 +32,6 @@ class Product extends Entity
'product_category_id' => true,
'product_type_id' => true,
'product_category' => true,
'product_attributes' => true,
];
}