Files
postshop-backend/config/ecommerce/models.php
2026-02-03 15:31:29 +05:00

16 lines
435 B
PHP

<?php
use App\Models\Ecommerce\Channel\Channel;
use App\Models\Ecommerce\Product\Brand\Brand;
use App\Models\Ecommerce\Product\Category\Category;
use App\Models\Ecommerce\Product\Collection\Collection;
use App\Models\Ecommerce\Product\Product\Product;
return [
'brand' => Brand::class,
'category' => Category::class,
'collection' => Collection::class,
'product' => Product::class,
'channel' => Channel::class,
];