|
CREDIT NOTE
|
OBBY'S VENTURES LIMITED
MorningSide Park, Off Usiu Rd P.O BOX 44275-00100 Nairobi, Kenya Tel: +254768611402 / +254799215421 Email: info@obbysventures.co.ke |
|
Client Information
Name:
{{ $creditNote->client->name }}
Address:
{{ $creditNote->client->address ?? 'N/A' }}
Email:
{{ $creditNote->client->email ?? 'N/A' }}
Phone:
{{ $creditNote->client->phone ?? 'N/A' }}
@if($creditNote->event)
Event:
{{ $creditNote->event->name }}
@endif
|
Credit Note Details
Credit No:
{{ $creditNote->credit_note_number }}
Issue Date:
{{ $creditNote->issue_date ? $creditNote->issue_date->format('d M, Y') : 'N/A' }}
Invoice No:
{{ $creditNote->invoice ? $creditNote->invoice->invoice_no : 'N/A' }}
Status:
{{ ucfirst($creditNote->status) }}
|
| Description | Qty | Unit Price | Total Price |
|---|---|---|---|
| {{ $item->description }} | {{ $item->quantity }} | {{ number_format($item->unit_price, 0) }} | {{ number_format($item->amount, 0) }} |
| Credit for Invoice #{{ $creditNote->invoice ? $creditNote->invoice->invoice_no : 'N/A' }} | |||
| Subtotal | KES {{ number_format($subtotal, 0) }} |
| VAT ({{ $creditNote->vat_rate }}%) | KES {{ number_format($creditNote->vat_amount, 0) }} |
| TOTAL CREDIT | KES {{ number_format($creditNote->amount, 0) }} |