CREDIT NOTE
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) }}
@php $subtotal = 0; @endphp @foreach($creditNote->items as $item) @php $subtotal += $item->amount; @endphp @endforeach @if($creditNote->items->count() == 0) @php $subtotal = $creditNote->amount; @endphp @endif
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' }}
@if($creditNote->vat_amount > 0) @endif
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) }}
Reason for Credit

{{ $creditNote->reason }}

Notes Section
@if($creditNote->notes)

{{ $creditNote->notes }}

@else

No notes available for this credit note.

@endif
Signature Section
Prepared by: {{ $creditNote->createdByUser ? $creditNote->createdByUser->name : 'Finance Manager' }}
Approved by: {{ $creditNote->approvedByUser ? $creditNote->approvedByUser->name : 'CEO' }}