@if($selectedLessonSchedule->studentVideo)
@endif
{{ $selectedLessonSchedule->studentVideo->name }}
Module: {{ $lesson->courseOutline->description }}
Lesson: {{ $lesson->name }}
{!! $lesson->description !!}
@php
$online_platform = $selectedLessonSchedule->conferencePlatform->conferencePlatformType->name;
$meeting_type_code = $selectedLessonSchedule->conferencePlatform->conferencePlatformType->code;
$onlineMeeting = $selectedLessonSchedule->getOnlineMeeting();
@endphp
@if($meeting_type_code == 'zoom')
@if($onlineMeeting)
Meeting ID: {{ $onlineMeeting->zoom_meeting_id }}
Password: {{ $onlineMeeting->password }}
@else Not Set @endif @else {!! $online_platform !!} @endif
@if($previousLessonSchedule->id)
🡸
{{ $previousLessonSchedule->lesson->name }}
@endif
@if($nextLessonSchedule->id)
{{ $nextLessonSchedule->lesson->name }}
âž”
@endif