Safety Communication Details

Reference Number: {{ $communication->reference_number }}

Generated on: {{ date('F j, Y g:i A') }}

Basic Information

Title
{{ $communication->title }}
Reference Number
{{ $communication->reference_number }}
Communication Type
{{ ucfirst(str_replace('_', ' ', $communication->communication_type)) }}
Priority Level
{{ ucfirst($communication->priority_level) }}
Status
{{ ucfirst($communication->status) }}
Company
{{ $communication->company->name ?? 'N/A' }}

Message Content

{{ $communication->message }}

Target Audience & Delivery

Target Audience
{{ $communication->getTargetAudienceLabel() }}
Delivery Method
{{ ucfirst(str_replace('_', ' ', $communication->delivery_method)) }}
Total Recipients
{{ $recipientCount }}
Requires Acknowledgment
{{ $communication->requires_acknowledgment ? 'Yes' : 'No' }}
@if($communication->acknowledgment_deadline)
Acknowledgment Deadline
{{ $communication->acknowledgment_deadline->format('F j, Y g:i A') }}
@endif
@if($communication->requires_acknowledgment)

Acknowledgment Status

Acknowledged
{{ $communication->acknowledged_count ?? 0 }} / {{ $communication->total_recipients ?? 0 }}
Acknowledgment Rate
{{ $communication->acknowledgment_rate ? number_format($communication->acknowledgment_rate, 1) . '%' : '0%' }}
@endif

Timeline

Created At
{{ $communication->created_at->format('F j, Y g:i A') }}
Created By
{{ $communication->creator->name ?? 'N/A' }}
@if($communication->scheduled_send_time)
Scheduled Send Time
{{ $communication->scheduled_send_time->format('F j, Y g:i A') }}
@endif @if($communication->sent_at)
Sent At
{{ $communication->sent_at->format('F j, Y g:i A') }}
@endif @if($communication->expires_at)
Expires At
{{ $communication->expires_at->format('F j, Y g:i A') }}
@endif