@if($customers->count() == 0)
No hay clientes para mostrar
@else
| # |
Nombre |
Email |
Teléfono |
Total Invitaciones |
|
@foreach ($customers as $customer)
| {{ $customer->id }} |
{{ $customer->name }} |
{{ $customer->email }} |
{{ $customer->phone }} |
{{ $customer->customerInvitations->where('plan_id', \App\Models\Plan::FREE)->count() }}
{{ $customer->customerInvitations->where('plan_id', \App\Models\Plan::PREMIUM)->count() }}
{{ $customer->customerInvitations->where('plan_id', \App\Models\Plan::VIP)->count() }}
|
|
@endforeach
{!! $customers->links('custom-pagination-links') !!}
@endif