@extends('layouts.admin') @section('title', 'Notification Delivery Logs') @section('page-title', 'Delivery Logs') @section('content')
Back to Notifications
Notification Details
Title {{ $notification->title }}
Description

{{ $notification->description }}

Category {{ $notification->category }}
Target Scope {{ $notification->target_type }}
Created At {{ $notification->created_at->format('d M Y - h:i A') }}
Recipient Delivery Details
@forelse($logs as $log) @empty @endforelse
Student Parent Details Status Read Time
{{ $log->student->name }}
{{ $log->student->roll_number }}
{{ $log->student->schoolClass->name }} - {{ $log->student->section->name }}
{{ $log->studentParent->name }}
{{ $log->studentParent->mobile }}
{{ $log->status }} {{ $log->read_at ? \Carbon\Carbon::parse($log->read_at)->format('d M Y - h:i A') : '--' }}
No recipient logs recorded for this scope.
@endsection