@extends('layouts.app') @section('title', 'Period Report') @section('content')
{{ ucfirst($period) }} Report: {{ $startDate->format('F j, Y') }} to {{ $endDate->format('F j, Y') }}
| Department | Talks | Avg Attendance |
|---|---|---|
| {{ $dept['name'] }} | {{ $dept['count'] }} | {{ number_format($dept['avg_attendance'], 2) }}% |
| Topic | Talks | Avg Attendance |
|---|---|---|
| {{ $topic['name'] }} | {{ $topic['count'] }} | {{ number_format($topic['avg_attendance'], 2) }}% |
| Reference | Title | Date | Status | Department | Attendance Rate |
|---|---|---|---|---|---|
| {{ $talk->reference_number }} | {{ $talk->title }} | {{ $talk->scheduled_date->format('M j, Y') }} | {{ ucfirst($talk->status) }} | {{ $talk->department?->name ?? 'N/A' }} | {{ number_format($talk->attendance_rate, 2) }}% |
| No talks found for the selected period. | |||||