@php
$sideBarShow = $sideBarShow ?? null;
@endphp
@foreach ($course->chapters as $key => $chapter)
@php
$chapterId = $chapter->id;
$select_chapter_id = $data['chapter_id'] ?? null;
$start_topic_id = $data['topic_id'] ?? null;
$showClass = $select_chapter_id == $chapterId ? 'panel-show' : ($loop->first ? 'panel-show' : '');
@endphp
@foreach ($chapter->topics as $key => $chapterTopic)
@php
$topic = $chapterTopic?->topicable ?? null;
@endphp
@if ($topic?->topic_type?->slug == 'video')
@endif
@if ($topic?->topic_type?->slug == 'reading')
@endif
@if ($topic?->topic_type?->slug == 'supplement')
@endif
@if ($topic?->topic_type?->slug == 'assignment')
@endif
@if ($topic?->topic_type?->slug == 'quiz')
@endif
@endforeach
@endforeach