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

All Notifications

    @forelse(auth()->user()->notifications as $notification)
  • {{ $notification->data['title'] ?? 'Notification' }}
    {{ $notification->data['body'] ?? '' }}
    {{ $notification->created_at->diffForHumans() }} @if(!$notification->read_at) Mark as read @endif
  • @empty
  • No notifications found.
  • @endforelse
@endsection