LISTADO DE CLIENTES {{ $customers->total() }}
| NOMBRE COMPLETO |
CORREO ELECTRONICO |
TIPO |
CREACIÓN |
|
@foreach($customers as $customer)
| {{ $customer->name_complete }} |
{{ $customer->email }} |
{{ $customer->type }} |
{{ $customer->created_at }} |
|
@endforeach
@if(count($customers)==0)
@endif
@include('admin.common.pagination.default', ['paginator' => $customers])