@extends('layouts.admin-panel') @section('title', 'Daftar Pelanggan') @section('header', 'Pelanggan') @section('subheader', 'Kelola data pelanggan yang terdaftar di toko Anda.') @section('content')
@forelse($customers as $customer) @empty @endforelse
Nama Pelanggan Email & Telepon Bergabung Aksi
{{ strtoupper(substr($customer->name, 0, 1)) }}
{{ $customer->name }}
{{ $customer->email }} {{ $customer->phone ?? '-' }} {{ $customer->created_at->format('d M Y') }} Detail

Belum ada pelanggan terdaftar.

@if($customers->hasPages())
{{ $customers->links() }}
@endif
@endsection