@if(!empty($order->items)) @foreach($order->items as $item) @endforeach @endif @foreach($order->taxes as $tax) @php $countTax = ($tax->tax_value * $order->total_amount) / 100; @endphp @if($countTax != 0) @endif @endforeach
Description Total @if($order->currency == 'USD') USD @elseif ($order->currency == 'EURO') EURO @else {{ $currency }} @endif
{!! $item->description !!} {{ number_format($item->amount, 2) }}
@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) }}
{{ $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) }}
Total {{ number_format($order->sub_total_amount,2) }}