| {{translate('S.No')}} | {{translate('Order ID')}} | {{translate('Product Name')}} | {{translate('Item Qty.')}} | {{translate('Amount')}} | {{translate('Delivery Status')}} | {{translate('Payment Status')}} | {{translate('Packed Qty.')}} | {{translate('Available Qty. to Pack')}} | {{translate('Shipping Service')}} | {{translate('Action')}} | 
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $key+1 }} | {{ $orderProduct->order->code }} | @if ($orderProduct->product->name != null) {{ $orderProduct->product->name }} @else {{ translate('Product Unavailable') }} @endif | {{$orderProduct->quantity}} | {{ single_price($orderProduct->price) }} | {{ ucwords(orderStatusDiscription($orderProduct->delivery_status)) }} | @if ($orderProduct->payment_status == 'paid') {{ translate('Paid')}} @else {{ translate('Unpaid')}} @endif | {{(!empty(@$orderProduct->packed_qty)) ? @$orderProduct->packed_qty : '0'}} | 
                            @if($orderProduct->package_status == 1)
                                Packed
                            @else
                                
                            @endif
                         |