|
CLIENT ID
|
CLIENT INFORMATION
|
PHONE
|
ID NUMBER
|
TYPE
|
STATUS
|
CREATED
|
ACTIONS |
@forelse($clients as $client)
|
{{ $client->client_number }}
|
@if($client->photo)

@else
@endif
{{ $client->full_name }}
{{ $client->email }}
|
{{ $client->phone }}
|
{{ $client->id_number }}
|
@if($client->type == 'group')
Group
@else
Individual
@endif
|
@if($client->status == 'active')
Active
@elseif($client->status == 'inactive')
Inactive
@elseif($client->status == 'suspended')
Suspended
@else
Blacklisted
@endif
|
{{ $client->created_at->format('M d, Y') }}
{{ $client->created_at->diffForHumans() }}
|
|
@empty
No clients found
Get started by adding your first client to the system.
Add New Client
|
@endforelse
@if($clients->hasPages())
Showing {{ $clients->firstItem() }} to {{ $clients->lastItem() }} of {{ $clients->total() }} clients
@endif