order detail

This commit is contained in:
Kerim 2023-09-03 11:53:52 +05:00
parent ae419fc8d1
commit 6e5336c0fd
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ class SellerProduct extends SellerProductController
$orderItems = SellerOrderItemModel::where('marketplace_order_id', $request->get('order_id'))->with(['product', 'item.product.images'])->paginate(12);
$order = SellerOrderModel::where('id', $request->get('order_id'))->with('order.customer')->with('order.shipments')->first();
$order = SellerOrderModel::where('id', $request->get('order_id'))->with('order.customer')->with('order.shipping_address')->first();
if ($orderItems) {
return response([