@extends('layouts.app') @section('title', 'Customers Directory') @section('content')

Customers Directory

Master database of individual customers, sponsors, investors, and dependents.

All Customers Individuals VIP Customers
@forelse($customers as $customer) @empty@endforelse
Customer Code Full Name Mobile Nationality Type Status Actions
{{ $customer->customer_code }}
{{ $customer->full_name_en }}
@if($customer->is_vip) VIP @endif
{{ $customer->contact ? $customer->contact->primary_mobile : 'N/A' }} {{ $customer->nationality }} {{ $customer->customer_type }} Active View 360
No customers match these filtersClear the filters or add a new customer.
{{ $customers->links() }}
@endsection