order detail

This commit is contained in:
Kerim 2023-09-03 11:50:43 +05:00
parent 4c643e06de
commit ae419fc8d1
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')->first();
$order = SellerOrderModel::where('id', $request->get('order_id'))->with('order.customer')->with('order.shipments')->first();
if ($orderItems) {
return response([