This commit is contained in:
Kerim 2023-09-01 11:08:14 +05:00
parent 18312f996f
commit 894b5c9072
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ class SellerProduct extends SellerProductController
$seller = $this->sellerRepository->isSellerMarket($request->get('seller_id'));
if ($seller) {
$orders = SellerOrderModel::where('marketplace_seller_id', $seller->id)->with('order.shipping_address')->paginate(15);
$orders = SellerOrderModel::where('marketplace_seller_id', $seller->id)->with('order.customer')->paginate(15);
return response($orders);
} else {
return response([