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