reupload
This commit is contained in:
5
config/ecommerce/api.php
Normal file
5
config/ecommerce/api.php
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'token' => env('API_TOKEN', ''),
|
||||
];
|
||||
15
config/ecommerce/models.php
Normal file
15
config/ecommerce/models.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?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,
|
||||
];
|
||||
Reference in New Issue
Block a user