@extends('layouts.admin', ['title' => 'Notifications']) @section('admin-content')

Notifications

Send in-app, email, webhook, or WhatsApp-style notification records to customers.

@csrf

Recent notifications

@foreach ($notifications as $notification)
{{ $notification->title }}
{{ $notification->user?->name ?: 'System' }} • {{ $notification->channel }} • {{ $notification->status }}
{{ $notification->sent_at?->diffForHumans() }}
{{ $notification->message }}
@endforeach
{{ $notifications->links() }}
@endsection