@if(sizeof($data['customers']) > 0)
{{ $data['p_description'] }}
ID |
Name |
Email |
Group |
Confirmed |
Last Login |
Status |
Actions |
@foreach($data['customers'] as $customer)
{{ $customer->id }} |
{{----}}{{ $customer->first_name . ' ' . $customer->last_name }} |
{{ $customer->email }} |
{{ $customer->group->name }} |
@if($customer->confirmed == '1') Confirmed @else Not Confirmed @endif |
{{ $customer->created_at }} |
@if($customer->active == '1') Active @else In-active @endif |
|
@endforeach
@else
Sorry!, no customers found.
@endif