Notifications

@if(auth()->user()->unreadNotifications->count() > 0)
@csrf
@endif
@forelse(auth()->user()->unreadNotifications as $notification)

{{ $notification->data['title'] }}

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

{{ $notification->created_at->diffForHumans() }}

@empty

No new notifications

@endforelse
View all history