@extends('admin.layouts.app') @section('title', 'Send Notifications') @section('page-title', 'Broadcast Notifications') @section('page-title-jp', 'お知らせを送信') @section('content') {{-- ── Flash message ───────────────────────────────────────────────── --}} @if (session('success'))
Send direct notifications to your users' devices.
Last 50 delivery attempts. Includes open rates tracking.
No notifications sent yet. Broadcast something above to see delivery results here.
| User | Channel | Notification | Status | Opened | Error / Info | Sent At |
|---|---|---|---|---|---|---|
|
{{ $log->user->name ?? '—' }}
{{ $log->user->email ?? '' }}
|
{{-- Channel badge --}}
@if ($log->channel === 'webpush') Web Push @elseif ($log->channel === 'whatsapp') WhatsApp @else {{ $log->channel }} @endif | {{-- Title --}}{{-- Status --}} | @if ($log->status === 'sent') Sent @else Failed @endif | {{-- Opened At --}}@if ($log->opened_at) {{ $log->opened_at->format('M d, H:i') }} @else — @endif | {{-- Error --}}
@if ($log->error)
{{ Str::limit($log->error, 200) }}
@else
—
@endif
|
{{-- Time --}}
{{ $log->created_at->format('d M Y') }} {{ $log->created_at->format('H:i:s') }} |