@if(session('successMessage'))
{{ session('successMessage') }}
@endif
@if($customers->count() == 0)

No hay clientes para mostrar

@else
@foreach ($customers as $customer) @endforeach
# Nombre Email Teléfono Total Invitaciones
{{ $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() }}
{!! $customers->links('custom-pagination-links') !!}
@endif