@extends('layouts.admin') @section('title', 'Notification Center') @section('page-title', 'Notification Center') @section('content')

Operations / Notifications

Send Announcement
@forelse($notifications as $notif) @empty @endforelse
Details Category Target Audience Scheduled At Delivery Logs Actions
{{ $notif->title }} {{ Str::limit($notif->description, 100) }} @if($notif->attachment_path) Attachment Uploaded @endif {{ $notif->category }} {{ $notif->target_type }} {{ $notif->scheduled_at ? \Carbon\Carbon::parse($notif->scheduled_at)->format('d M Y - h:i A') : 'Immediate' }} View Logs
@csrf @method('DELETE')
No announcements posted. Click "Send Announcement" to create one.
@endsection