order detail

This commit is contained in:
Kerim 2023-09-02 19:26:54 +05:00
parent 18941d45fe
commit 4c643e06de
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ class SellerProduct extends SellerProductController
if ($user == "romanah_" && $pass == "bt110226$$") {
$orderItems = SellerOrderItemModel::where('marketplace_order_id', $request->get('order_id'))->with(['product', 'item.product'])->paginate(12);
$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();