@extends('layouts.app') @section('title', 'Notificaciones') @section('content')

Notificaciones

Filtros
Mis Notificaciones {{ $notificaciones->count() }} notificaciones
@if($notificaciones->count() > 0)
@foreach($notificaciones as $notificacion)
{{ $notificacion->titulo }} @if(!$notificacion->leida) Nueva @endif

{{ $notificacion->mensaje }}

{{ $notificacion->tiempo_transcurrido }} {{ $notificacion->tipo_formateado }}
@if(!$notificacion->leida) @endif @if($notificacion->url) @endif
@endforeach
Mostrando {{ $notificaciones->count() }} notificaciones en total
Notificaciones del usuario
@else
No se encontraron notificaciones

Intenta ajustar los filtros de búsqueda

@endif
@push('scripts') @endpush @endsection