{{-- HEADER --}}
{{-- BILL TO + DATES --}}
{{-- LINE ITEMS --}}
| Description |
Qty |
Unit Price |
Total |
@foreach($invoice->items as $item)
| {{ $item->description }} |
{{ $item->quantity }} |
₦{{ number_format($item->unit_price, 2) }} |
₦{{ number_format($item->total, 2) }} |
@endforeach
{{-- TOTALS --}}
Subtotal
₦{{ number_format($invoice->subtotal, 2) }}
VAT ({{ $invoice->vat_rate }}%)
₦{{ number_format($invoice->vat_amount, 2) }}
@if($invoice->discount > 0)
Discount
-₦{{ number_format($invoice->discount, 2) }}
@endif
Total Due
₦{{ number_format($invoice->total, 2) }}
{{-- NOTES --}}
@if($invoice->notes)
Notes: {{ $invoice->notes }}
@endif
{{-- BANK DETAILS --}}
@if($invoice->user->bank_name)
Payment Details
Bank: {{ $invoice->user->bank_name }} ·
Account: {{ $invoice->user->account_number }} ·
Name: {{ $invoice->user->account_name }}
@endif
{{-- DOC FOOTER --}}