Notificaciones

@if(session('success'))
{{ session('success') }}
@endif
@csrf
@forelse($notifications as $notification)

{{ $notification->data['title'] ?? 'Notificación' }}

{{ $notification->data['message'] ?? '' }}

{{ $notification->created_at->diffForHumans() }}
Abrir
@empty

No tienes notificaciones.

@endforelse
{{ $notifications->links() }}