Description
|
Total @if($order->currency == 'USD') USD @elseif ($order->currency == 'EURO') EURO @else {{ $currency }} @endif
|
@if(!empty($order->items))
@foreach($order->items as $item)
{!! $item->description !!}
|
{{ number_format($item->amount, 2) }}
|
@endforeach
@endif
@if($order->currency == 'USD')
Exchange Rate: 1USD = {{ $currency }} {{ $order->conversion_rate }}
@elseif ($order->currency == 'EURO')
Exchange Rate: 1EURO = {{ $currency }} {{ $order->conversion_rate }}
@endif
|
Sub-Total
|
{{ number_format($order->total_amount,2) }}
|
@foreach($order->taxes as $tax)
@php $countTax = ($tax->tax_value * $order->total_amount) / 100; @endphp
@if($countTax != 0)
{{ $tax->tax_value }}% @if($tax->tax_title == 'Withholding Tax') WHT @else {{ $tax->tax_title }} @endif
|
{{ number_format(($tax->tax_value * $order->total_amount) / 100,2) }}
|
@endif
@endforeach
Total
|
{{ number_format($order->sub_total_amount,2) }}
|