This commit is contained in:
Lizandro Guarnizo
2026-04-25 14:55:11 -05:00
parent 2228818c85
commit fa1f4bc581
2 changed files with 44 additions and 9 deletions
@@ -142,7 +142,13 @@
<div>
<p class="font-semibold text-green-700 text-sm">Conexión exitosa</p>
<p class="text-green-600 text-xs mt-1">
Se encontraron <strong>{{ count($emails) }}</strong> correo(s) recientes.
@if(count($emails) === 0)
No hay correos en los últimos 5 minutos.
@elseif(count($emails) === 5)
Se muestran los últimos <strong>5</strong> correos (límite alcanzado).
@else
<strong>{{ count($emails) }}</strong> correo(s) en los últimos 5 minutos.
@endif
</p>
</div>
</div>