Department Attendance Report

Period: {{ ucfirst($period) }}

Date Range: {{ $startDate->format('F j, Y') }} to {{ $endDate->format('F j, Y') }}

@forelse($departmentStats as $dept) @empty @endforelse
Department Total Talks Total Attendances Total Expected Attendance Rate (%)
{{ $dept['name'] }} {{ $dept['total_talks'] }} {{ $dept['total_attendances'] }} {{ $dept['total_expected'] }} {{ number_format($dept['attendance_rate'], 2) }}%
No department data available

Summary

Total Departments: {{ $departmentStats->count() }}
Total Talks: {{ $departmentStats->sum('total_talks') }}
Total Attendances: {{ $departmentStats->sum('total_attendances') }}
Average Attendance Rate: {{ number_format($departmentStats->avg('attendance_rate'), 2) }}%
Generated on {{ now()->format('F j, Y g:i A') }}