S.No. |
Item Name |
Qty |
Image |
Price |
@foreach($item as $value)
{{ $count++ }} |
{{ $value['item_info']['name'] }} |
{{ $value['qty'] }} |
@if($value->photo != '')
@else
--
@endif
|
{{ $value['price']}} |
@endforeach
|
Discount Amount |
{{ $order['coupon_discount'] }} |
|
Delivery Charge |
{{ $order['shipping_cost'] }} |
|
Total |
{{ ($order['pay_amount'] - $order['coupon_discount']) + $order['shipping_cost'] }}
|