@php
$subtotal = 0;
@endphp
@if($cart)
@foreach ($cart as $c)
| {{$c->product_name_en}} |
{{$c->size_name_en}} {{$c->color_name_en}} |
{{$c->qty}} |
{{$c->price * $c->qty}} /- |
@php
$subtotal = $subtotal+($c->price * $c->qty);
@endphp
@endforeach
@endif
|
Sub Total
|
{{$subtotal}}/- |
|
Shipping Cost
|
@if($draft_order->shipping_cost)
{{$draft_order->shipping_cost}}
@else
Select Your District
@endif
|
|
Apply Cuppon
|
@if($draft_order->cuppon_amount)
{{$draft_order->cuppon_amount}}
@else
@endif
|
| Grand Total |
{{($subtotal + $draft_order->shipping_cost) - $draft_order->cuppon_amount}} |