All Notifications

@if(session('success'))
{{ session('success') }}
@endif
@forelse($notifications as $notification) @empty @endforelse
ID Title Message Users Created At Actions
{{ $notification->id }} {{ $notification->title }} {{ Str::limit($notification->message, 50) }} {{ $notification->users->count() }} {{ $notification->created_at->format('d M Y') }}
@csrf @method('DELETE')
No notifications found.
{{ $notifications->links() }}