16 lines
435 B
PHP
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,
|
|
];
|