| PIN | Name | Mobile | NIC | Type | Credit Limit | Balance | Added | Status | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ $customer->pin }} |
{{ $customer->name }}
@if($customer->name_local)
{{ $customer->name_local }}
@endif
|
{{ $customer->mobile ?? $customer->phone }} | {{ $customer->nic ?? '—' }} | {{ ucfirst($customer->customer_type) }} | @if($customer->credit_limit === null) Unlimited @else {{ number_format($customer->credit_limit, 2) }} @endif | @php $balance = $customer->credit_balance; $colorClass = $balance > 0 ? 'text-red-600 font-semibold' : 'text-gray-600'; @endphp {{ number_format($balance, 2) }} | {{ optional($customer->created_at)->format('Y-m-d h:i A') }} | @if($customer->is_active) Active @else Inactive @endif |
No customers found.
Add your first customer