@extends('layouts.yellow') @section('content')
@if(session('success'))
{{ session('success') }}
@endif @if(count($notifications) > 0)
@foreach($notifications as $notification)
{{ $notification->title }}
{{ $notification->created_at->diffForHumans() }}

{{ $notification->message }}

@if(is_null($notification->read_at)) @endif @if($notification->link) Ver detalles @endif
@endforeach
{{ $notifications->links() }}
@else
No tienes notificaciones.
@endif
@endsection