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