@extends('admin.layouts.home') @section('title', 'Notification Management') @section('content')

Notification Management

{{ number_format($totalNotifications) }}

Total Notifications

{{ number_format($todayNotifications) }}

Today's Notifications

{{ number_format($unreadNotifications) }}

Unread Notifications

{{ $notificationsByType->count() }}

Notification Types
Notifications Over Time
Notification Types
@foreach($notificationsByType as $type) @endforeach
Type Count Percentage
{{ ucwords(str_replace('_', ' ', $type->type)) }} {{ number_format($type->count) }} {{ number_format(($type->count / $totalNotifications) * 100, 1) }}%
Top Notification Recipients
@foreach($topReceivers as $user) @endforeach
User Notifications Actions
{{ $user->name }}
{{ $user->name }}
ID: {{ $user->id }}
{{ number_format($user->notification_count) }} View Notifications
Send System Notification
@csrf
This will be sent to all active users on the platform.

@csrf
Hold Ctrl/Cmd to select multiple users.
@push('scripts') @endpush @endsection