@extends('layouts.app') @section('content')

Zoom Recordings

@foreach($recordings as $recording) @if($recording->participants && count($recording->participants)) @endif @endforeach
Meeting ID Topic Start Time Recording
{{ $recording->meeting_id }} {{ $recording->topic }} {{ $recording->start_time }} @if($recording->recording_url) Download @else No recording available @endif
Participants:
    @foreach($recording->participants as $participant)
  • {{ $participant->name ?? 'Unknown' }} @if($participant->email) ({{ $participant->email }}) @endif @if($participant->join_time) - Joined: {{ $participant->join_time }} @endif @if($participant->leave_time) - Left: {{ $participant->leave_time }} @endif
  • @endforeach
@endsection