{{ $invoice->invoice_number }}
| # | Description of Goods | Quantity | Unit | Unit Price | Amount |
|---|---|---|---|---|---|
| {{ $i + 1 }} |
{{ $item->product->name ?? '' }}
@if($item->description) {{ $item->description }}@endif @if($item->hs_code) HS: {{ $item->hs_code }}@endif |
{{ number_format($item->quantity, 2) }} | {{ $item->unit }} | {{ number_format($item->unit_price, 2) }} | {{ number_format($item->quantity * $item->unit_price, 2) }} |
| Subtotal | {{ number_format($invoice->subtotal, 2) }} |
| Discount | -{{ number_format($invoice->discount_amount, 2) }} |
| Tax ({{ $invoice->tax_rate }}%) | {{ number_format($invoice->tax_amount, 2) }} |
| Total | {{ number_format($invoice->total_amount, 2) }} {{ $invoice->currency }} |
Say Total: {{ $invoice->amount_in_words ?? '' }} {{ $invoice->currency }} Only
@if($invoice->bank_details)