This commit is contained in:
Kerim 2023-09-01 11:05:12 +05:00
parent 646f65b015
commit 18312f996f
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.shipments')->paginate(15);
$orders = SellerOrderModel::where('marketplace_seller_id', $seller->id)->with('order.shipping_address')->paginate(15);
return response($orders);
} else {
return response([