{{ $invoice->invoice_number }}
B2B Procurement Platform
{{ $company?->company_name ?? $invoice->user->name }}
@if($company){{ $company->address ?? '' }}
{{ $company->city ?? '' }} {{ $company->postal_code ?? '' }}
@endif{{ $invoice->user->email }}
| Invoice Date: | {{ $invoice->issue_date->format('d M Y') }} |
| Due Date: | {{ $invoice->due_date->format('d M Y') }} |
| Payment Terms: | {{ $invoice->payment_terms }} |
| Status: | {{ $invoice->status }} |
| Item | SKU | Qty | Unit Price | Total |
|---|---|---|---|---|
| {{ $item->product_name }} | {{ $item->product_sku ?? '-' }} | {{ $item->quantity }} | R {{ number_format($item->unit_price, 2) }} | R {{ number_format($item->total_price, 2) }} |
| Subtotal: | R {{ number_format($invoice->subtotal, 2) }} |
| VAT (15%): | R {{ number_format($invoice->tax_amount, 2) }} |
| Delivery Fee: | R {{ number_format($invoice->delivery_fee, 2) }} |
| Discount: | -R {{ number_format($invoice->discount_amount, 2) }} |
| Total: | R {{ number_format($invoice->total_amount, 2) }} |
| Amount Paid: | R {{ number_format($invoice->amount_paid, 2) }} |
| Balance Due: | R {{ number_format($invoice->balance_due, 2) }} |
{{ $invoice->notes }}
Thank you for your business!
ProcureHub - B2B Procurement Platform