@include('admin.partials.header')
Bulk action
Export
Delete
@csrf
Import contacts
Add person
Add Person
Name
Email
Phone
KRA PIN
Export Confirmation
Are you sure you want to export the selected contacts?
Delete Confirmation
Are you sure you want to delete the selected contacts?
Import Confirmation
Are you sure you want to import the file:
?
NAME
EMAIL
PHONE
ACCOUNT CREATED
KRA PIN
ACTION
@foreach($users as $user) @php $colors = ['#eb8b81','#8195be', '#ae6cc2', '#b2df74', '#c37954']; $colorIndex = $loop->index % count($colors); $backgroundColor = $colors[$colorIndex]; @endphp
☆
{{ strtoupper(substr($user->first_name, 0, 1)) }}{{ strtoupper(substr($user->last_name, 0, 1)) }}
{{ $user->first_name }} {{ $user->last_name }}
{{ $user->type }}
{{ $user->email }}
{{ $user->phone }}
{{ $user->created_at->format('d F Y') }}
{{ $userDetail->kra_pin ?? 'N/A' }}
view
@endforeach