@extends('layouts.app') @section('title', 'Department Attendance Report') @section('content')
{{ ucfirst($period) }} Report: {{ $startDate->format('F j, Y') }} to {{ $endDate->format('F j, Y') }}
| 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
|
| No department attendance data available for the selected period. | ||||