| {{ $details->product_name}}
@if($details->preOrder)
{{$details->preOrder}}
@endif
|
{{$details->product_code_inv}} |
{{$details->quantity}} |
@lang('symbols.currency')
{{ number_format($details->total_price+($details->od_special_discount*$details->quantity))}} |
@php($sub_total += $details->total_price)
@endforeach
| Subtotal |
@lang('symbols.currency')
{{ number_format($sub_total) }} |
| Shipping & Handling |
@lang('symbols.currency')
{{ number_format($shipping_cost) }} |
@if($point > 0)
| Point Used |
@lang('symbols.currency')
{{ number_format($point) }} |
@endif
@if($totalSpecialDiscount > 0)
| {{ 'Ecom discount' }} |
@lang('symbols.currency')
{{ number_format($totalSpecialDiscount) }} |
@endif
@if($customerDiscount)
| Surprise Discount |
@lang('symbols.currency')
{{ number_format($customerDiscount->discount_price) }} |
@endif
| Grand Total |
@if($customerDiscount)
@php($g_total = (($sub_total+$shipping_cost) - $totalSpecialDiscount - $customerDiscount->discount_price) )
@else
@php($g_total = (($sub_total+$shipping_cost) - $totalSpecialDiscount) )
@endif
@lang('symbols.currency') {{ number_format($g_total-$point) }}
|