@if (session('success'))
{{ session('success') }}
@endif
@if (session('error'))
{{ session('error') }}
@endif
@if ($searchPerformed)
{{ $totalResults > 0 ? 'Tìm thấy ' . $totalResults . ' tài khoản' : 'Không tìm thấy tài khoản' }}
@endif
| STT |
Họ tên |
Email |
Tên tài khoản |
Ngày đăng ký |
Thao tác |
@if ($customers->isEmpty())
| Không có khách hàng cần duyệt |
@else
@foreach ($customers as $index => $customer)
| {{ $index + 1 }} |
{{ $customer->full_name }} |
{{ $customer->email }} |
{{ $customer->user->username }} |
{{ \Carbon\Carbon::parse($customer->create_at)->format('d/m/Y') }} |
|
@endforeach
@endif