@extends('customers.layout') @section('customer-content')
Detailed customer profile and account information
Tenant: {{ $customer->TenantName }}
@endif{{ $customer->ClientCode }}Unit {{ $customer->unit->UnitIdentity }}
{{ $customer->unit->property->City }}
No meter information available
@endifNotes: {{ $service->pivot->Notes }}
View and manage customer bills and invoices
| Bill # | Billing Date | Period | Amount (Ksh) | Due Date | Actions |
|---|---|---|---|---|---|
| {{ $bill->BillNo ?: $bill->BillID }} | {{ $bill->BillingDate ? \Carbon\Carbon::parse($bill->BillingDate)->format('M d, Y') : 'N/A' }} | {{ $bill->formatted_billing_period }} | {{ number_format($bill->TotalBill, 2) }} | @if($bill->DueDate < now()) Overdue @else {{$bill->DueDate}} @endif |
|
There are no bills for this customer yet. Create a new bill to get started.
| Receipt # | Date | Payment Method | Amount | Reference | Actions |
|---|---|---|---|---|---|
| {{ $payment->ReceiptNo }} | {{ \Carbon\Carbon::parse($payment->PaymentDate)->format('M d, Y') }} | {{ $payment->PaymentMethod }} | Ksh {{ number_format($payment->Amount, 2) }} | {{ $payment->ReferenceNo ?? 'N/A' }} |
Get started by recording a new payment.
@if($assignment->status === 'active') Assigned to @elseif($assignment->status === 'terminated') Unassigned from @else Transferred from @endif {{ $assignment->unit->UnitIdentity }} @if($assignment->status === 'active') on {{ $assignment->start_date->format('M d, Y') }} @else on {{ $assignment->end_date?->format('M d, Y') ?? 'N/A' }} @endif
@if($assignment->notes){{ $assignment->notes }}
@endifThis customer has not been assigned to any units yet.