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

Employee Statistics

@forelse($employeeStats as $stat) @empty @endforelse
Employee Department Total Sent Acknowledged
{{ $stat['employee']->name }}
{{ $stat['employee']->email }}
{{ $stat['employee']->employee->department->name ?? 'N/A' }} {{ $stat['total'] }} {{ $stat['sent'] }} {{ $stat['acknowledged'] }}
No data available
@endsection