@extends('layouts.app') @section('title', 'Safety Communication Details') @section('content')
{{ $communication->reference_number }}
{{ $communication->title }}
{{ str_replace('_', ' ', $communication->communication_type) }}
{{ ucfirst($communication->priority_level) }}
{{ $communication->getTargetAudienceLabel() }}
{{ str_replace('_', ' ', $communication->delivery_method) }}
{!! $communication->getStatusBadge() !!}
{{ $communication->created_at->format('F j, Y g:i A') }}
{{ $communication->sent_at->format('F j, Y g:i A') }}
{{ $communication->scheduled_send_time->format('F j, Y g:i A') }}
{{ $communication->expires_at->format('F j, Y g:i A') }}
{{ $recipientCount }}
{{ $communication->acknowledged_count ?? 0 }} / {{ $communication->total_recipients ?? 0 }}
@if($communication->acknowledgment_rate){{ number_format($communication->acknowledgment_rate, 1) }}%
Deadline: {{ $communication->acknowledgment_deadline->format('M j, Y') }}
@endif{{ $communication->creator->name ?? 'N/A' }}
{{ $communication->created_at->format('M j, Y') }}