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

Notificaciones

@csrf
@csrf
@if($notificaciones->isEmpty())

No tienes notificaciones

Cuando tengas nuevas notificaciones aparecerán aquí

@else
@foreach($notificaciones as $notificacion)
{{ $notificacion->titulo }}
@if(!$notificacion->leida) Nueva @endif {{ ucfirst($notificacion->prioridad) }}

{{ $notificacion->mensaje }}

{{ $notificacion->created_at->diffForHumans() }}
{{ $notificacion->prestamo->cliente_nombre_completo }}
@csrf @method('DELETE')
@endforeach
{{ $notificaciones->links() }}
@endif @endsection