@extends('layouts.app')
@section('content')
| Meeting ID |
Topic |
Start Time |
Recording |
@foreach($recordings as $recording)
| {{ $recording->meeting_id }} |
{{ $recording->topic }} |
{{ $recording->start_time }} |
@if($recording->recording_url)
Download
@else
No recording available
@endif
|
@if($recording->participants && count($recording->participants))
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
|
@endif
@endforeach
@endsection