@extends('layouts.app') @section('title', 'Period Communication Report') @section('content')
Reset

Total

{{ $stats['total'] }}

Sent

{{ $stats['sent'] }}

Scheduled

{{ $stats['scheduled'] }}

Avg. Acknowledgment

{{ number_format($stats['avg_ack_rate'], 1) }}%

Communications

@forelse($communications as $communication) @empty @endforelse
Reference Title Type Priority Status Recipients Created
{{ $communication->reference_number }}
{{ Str::limit($communication->title, 40) }}
{{ str_replace('_', ' ', $communication->communication_type) }} {{ ucfirst($communication->priority_level) }} {{ ucfirst($communication->status) }} {{ $communication->total_recipients ?? 0 }} {{ $communication->created_at->format('M j, Y') }}
No communications found
@endsection