@extends('layouts.app') @section('title', 'Department Attendance Report') @section('content')

Report Period

{{ ucfirst($period) }} Report: {{ $startDate->format('F j, Y') }} to {{ $endDate->format('F j, Y') }}

Department Attendance Statistics

@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'] }}
@if($dept['attendance_rate'] > 10) {{ number_format($dept['attendance_rate'], 1) }}% @endif
{{ number_format($dept['attendance_rate'], 2) }}%
No department attendance data available for the selected period.
@endsection