@if($payments->count() == 0)

No payments to show

@else
@foreach ($payments as $payment) @endforeach
# Nombre y Apellido Email Método Invitación Plan País Tipo de invitación Template Monto Completo Fecha
{{ $payment->id }} {{ $payment->customer->name }} {{ $payment->customer->email }} {{ $payment->payment_method }} Ver # {{$payment->invitation_id}} {{ $payment->plan->name }} {{ $payment->country }} {{ $payment->invitationType->name }} {{ $payment->template->name }} {{ $payment->amount }} {{$payment->currency}} @if($payment->success) @else @endif {{ $payment->created_at }}
{!! $payments->links('custom-pagination-links') !!}
@endif