{{ $customerName }}
Este cliente no tiene invitaciones aún.
| Invitación | Tipo / Plan | Fecha | Links | Generar link |
|---|---|---|---|---|
| {{ $inv->title }} | {{ optional($inv->type)->name ?? '-' }} @if($inv->plan) {{ $inv->plan->short_name ?? $inv->plan->name }} @endif | {{ $inv->event_date ? $inv->event_date->format('d/m/Y') : '-' }} | @php $tokenCount = $inv->formTokens->count(); @endphp @if($tokenCount > 0) {{ $tokenCount }} @else — @endif |
{{-- Links existentes --}}
@if($inv->formTokens->isNotEmpty())
@foreach($inv->formTokens as $tok)
@endif
{{-- Botón nuevo link --}}
@if($tok->used_at)
@elseif($tok->expires_at && $tok->expires_at->isPast())
@else
@endif
@endforeach
|