{{-- Customers Tab --}}
| ID |
Name |
Email |
Role |
Creation Date |
Verified |
Action |
@foreach ($customers as $user)
| {{ $loop->iteration }} |
{{ $user->name }} |
{{ $user->email }} |
{{ $user->role ?? 'N/A' }} |
{{ $user->created_at->format('d/m/y') }} |
@if ($user->email_verified_at)
Verified
@else
Not Verified
@endif
|
|
@endforeach
{{ $customers->links('pagination::bootstrap-4') }}
{{-- Admins Tab --}}
| ID |
Name |
Email |
Role |
Creation Date |
Verified |
Action |
@foreach ($admins as $user)
| {{ $loop->iteration }} |
{{ $user->name }} |
{{ $user->email }} |
{{ $user->role ?? 'N/A' }} |
{{ $user->created_at->format('d/m/y') }} |
@if ($user->email_verified_at)
Verified
@else
Not Verified
@endif
|
|
@endforeach