{{ $receiver['name'] }}
{{ $receiver['company'] ?: '' }}
{{ $receiver['address'] }}
{{ $receiver['city'] }}, {{ $receiver['country'] }}
| Invoice No. | {{ $invoice_no }} |
| Date | {{ $invoice_date }} |
| Origin | {{ $shipment->fromCountry?->name }} |
| Transport | Air Freight |
| Customs | {{ $customs_office ?: 'Imam Khomeini Airport' }} |
| No. | Item Description | Unit | Qty | Unit Price | Total (Currency) | Total (Rial) | Notes |
|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item['description'] }} | {{ $item['unit'] ?: 'service' }} | {{ number_format($item['quantity'], 2) }} | {{ $item['unit_price'] > 0 ? number_format($item['unit_price'], 2) : '0.00' }} | {{ $item['total_currency'] > 0 ? number_format($item['total_currency'], 2) : '0.00' }} | {{ $item['total_rial'] > 0 ? number_format($item['total_rial']) : '0' }} | {{ $item['notes'] ?: '' }} |
| Freight Subtotal | {{ number_format($freight_subtotal_currency, 2) }} | {{ number_format($freight_subtotal_rial) }} | |||||
| Clearance Subtotal | {{ number_format($clearance_subtotal_currency, 2) }} | {{ number_format($clearance_subtotal_rial) }} | |||||
| Currency Rate: | {{ number_format($exchange_rate) }} | ||||||
| TOTAL | {{ number_format($total_currency, 2) }} | {{ number_format($total_rial) }} | |||||
{{ $terms_and_conditions }}