admin menu filter and seller

This commit is contained in:
merdan 2022-09-27 14:32:24 +05:00
parent 2e1a607b6f
commit 062099e6f2
2 changed files with 10 additions and 1 deletions

View File

@ -0,0 +1,8 @@
<?php
namespace Sarga\Shop\Contracts;
interface Vendor
{
}

View File

@ -7,8 +7,9 @@ use Illuminate\Database\Eloquent\Relations\HasOne;
use Sarga\Brand\Models\BrandProxy;
use Webkul\Marketplace\Models\Seller;
use Webkul\Marketplace\Models\SellerCategoryProxy;
use Sarga\Shop\Contracts\Vendor as VendorContract;
class Vendor extends Seller
class Vendor extends Seller implements VendorContract
{
public function categories() : HasOne
{