Mis Notificaciones
@if($totalNoLeidas > 0)
{{ $totalNoLeidas }} nuevas
@endif
@if($totalNoLeidas > 0)
@endif
@if(!$notificaciones->isEmpty())
@endif
No tenés notificaciones todavía.
Ir a mi panel
@foreach($notificaciones as $notif)
{{-- Ícono según tipo --}}
@php
$iconos = [
'partido' => ['class' => 'bi-calendar-event', 'color' => 'text-primary'],
'resultado' => ['class' => 'bi-trophy-fill', 'color' => 'text-warning'],
'sistema' => ['class' => 'bi-info-circle-fill','color' => 'text-secondary'],
'seguimiento' => ['class' => 'bi-star-fill', 'color' => 'text-success'],
];
$icono = $iconos[$notif->tipo] ?? ['class' => 'bi-bell-fill', 'color' => 'text-muted'];
@endphp
{{-- Contenido --}}
{{ $notif->titulo }}
{{ $notif->creada_en->diffForHumans() }}
{{ $notif->mensaje }}
@if($notif->url_accion)
Ver detalle
@endif
@if(!$notif->leida)
@endif
@endforeach