Kelola seluruh customer terdaftar dan tamu.
| Customer | Nomor HP | Total Pesanan | Total Belanja | Bergabung | Status | Aksi | |
|---|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($customer->name, 0, 1)) }}
{{ $customer->name }} {{ $customer->type === 'user' ? 'Member' : 'Guest' }} |
{{ $customer->phone ?? '—' }} | {{ $customer->email ?? '—' }} | {{ $customer->orders_count }} | Rp {{ number_format($customer->orders_sum, 0, ',', '.') }} | {{ $customer->joined_at?->format('d M Y') ?? '—' }} | @if ($customer->type === 'user') {{ $customer->is_active ? 'Aktif' : 'Tidak Aktif' }} @else — @endif | |
|
Belum ada data customer. |
|||||||