{{ $evento->titulo }}

{{ \App\Models\Evento::TIPOS[$evento->tipo] }} @if ($evento->paso) {{ $evento->paso->nombre }} @endif

{{ ucfirst($evento->fecha_inicio->translatedFormat('l d \d\e F, H:i')) }}

@if ($evento->lugar)

{{ $evento->lugar }}

@endif @if ($evento->descripcion)

{{ $evento->descripcion }}

@endif @if ($puedeGestionar)
Editar @if ($evento->pasar_lista) Pasar lista @endif
@endif
@if ($evento->requiere_confirmacion && auth()->user()->persona_id)

¿Vas a asistir?

@foreach (\App\Models\EventoConfirmacion::ESTADOS as $clave => $etiqueta) @endforeach
@endif @if ($puedeGestionar)

Audiencia

@if ($evento->requiere_confirmacion) @php $totales = $confirmaciones->countBy('estado'); $sinContestar = $destinatarios->count() - $confirmaciones->count(); @endphp

Confirmaciones

@if ($sinContestar > 0) @endif
{{ $totales['asiste'] ?? 0 }} voy {{ $totales['no_asiste'] ?? 0 }} no voy {{ $totales['quizas'] ?? 0 }} quizás {{ $sinContestar }} sin contestar
@endif

Entregas ({{ $destinatarios->count() }})

@endif