Id |
User |
Phone |
Type |
Status |
Action |
@if (!empty($providers) && $provider->count())
@foreach ($providers as $key => $provider)
{{ $provider->user_no }} |
@if ($provider->image == null)
@else
@endif
{{ $provider->name }}
{{ $provider->email ?? '-' }}
|
{{ $provider->phone ?? '-' }}
|
@if ($provider->type_id == 1)
Normal User
@else
Corporate User
@endif
|
@if ($provider->status === null)
Pending Verification
@elseif ($provider->status === 0)
Inactive
@else
Active
@endif
|
|
@endforeach
@else
No matching records found |
@endif
{{ $providers->links() }}