order detail
This commit is contained in:
parent
ae419fc8d1
commit
6e5336c0fd
|
|
@ -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([
|
||||
|
|
|
|||
Loading…
Reference in New Issue