@extends('layouts.app') @section('title', 'Zoom Insights Report') @section('page-title', 'Integrated Zoom Insights') @section('breadcrumb', 'Reports / Zoom Insights') @section('content')
@if($events->count())
@foreach($events as $event) @endforeach
Zoom Class Course Instructor Start Time End Time Attendance Status
{{ $event->title }} {{ $event->course?->title ?? '—' }} {{ $event->instructor?->name ?? '—' }} {{ $event->starts_at?->format('M d, Y H:i') }} {{ $event->ends_at?->format('M d, Y H:i') }} No attendance data
{{ $events->links() }}
@else @endif
@endsection