Danh sách khách hàng
{{-- Hiển thị thông báo tìm kiếm --}}
@if ($searchPerformed && $search !== '')
@if ($totalResults > 0)
Tìm thấy {{ $totalResults }} khách hàng có tên chứa từ khóa: "{{ $search }}"
@else
Không tìm thấy khách hàng có tên chứa từ khóa: "{{ $search }}"
@endif
@endif
| STT |
Họ tên |
Ảnh đại diện |
Ngày sinh |
Email |
Trạng thái |
Thao tác |
@foreach ($customers as $index => $customer)
| {{ ($customers->currentPage() - 1) * $customers->perPage() + $index + 1 }} |
{{ $customer->full_name }} |
|
{{ \Carbon\Carbon::parse($customer->date_of_birth )->format('d/m/Y') }} |
{{ $customer->email }} |
{{-- {{ $customer->gender }} | --}}
@if ($customer->status === 'active')
•
Hoạt động
@endif
|
|
@endforeach