@extends('layouts.app') @section('content')

Notifications

@csrf
@if(session('success'))
{{ session('success') }}
@endif
@forelse($notifications as $n)
{{ $n->data['title'] ?? 'Notification' }}
{{ $n->data['message'] ?? '' }}
@csrf
{{ $n->created_at->diffForHumans() }}
@empty
No notifications
@endforelse
{{ $notifications->links() }}
Unread: {{ $unreadCount }}
@endsection