{{-- admin/notifications/index.blade.php | Obrempong | Jcode --}} @extends('layouts.admin') @section('title','Push Notifications') @section('content')
{{-- Send Form --}}

đŸ“Ŗ Send Notification to All Users

@if(session('success'))
{{ session('success') }}
@endif
@csrf
Max 500 characters
This notification will be sent to {{ number_format($totalUsers) }} active users.
{{-- Recent Notifications --}}

Recent Broadcasts

@forelse($recent as $n)
{{ match($n->type){'success'=>'✅','warning'=>'âš ī¸','danger'=>'🚨',default=>'â„šī¸'} }}
{{ $n->title }}
{{ Str::limit($n->message,80) }}
{{ $n->created_at->diffForHumans() }}
@empty
No notifications sent yet.
@endforelse
@endsection