{{ trans('update.curriculum_overview') }}

{{ trans('update.this_course_includes_n_modules_n_lessons_and_n_hours_of_materials', ['chapters' => $course->chapters->count(), 'sections' => $webinarContentCount, 'hours' => convertMinutesToHourAndMinute($course->getAllChaptersDurations())]) }}

@if($hasBought or !empty($course->getInstallmentOrder())) {{ trans('update.learning_page') }} @endif
{{-- Chapters --}} @if(!empty($course->chapters) and count($course->chapters))
@include('design_1.web.courses.show.tabs.contents.chapters')
@endif {{-- Sessions --}} @if(!empty($sessionsWithoutChapter) and count($sessionsWithoutChapter))
@foreach($sessionsWithoutChapter as $session) @include('design_1.web.courses.show.tabs.contents.sessions' , ['session' => $session, 'accordionParent' => 'sessionsAccordion']) @endforeach
@endif {{-- Files --}} @if(!empty($filesWithoutChapter) and count($filesWithoutChapter))
@foreach($filesWithoutChapter as $file) @include('design_1.web.courses.show.tabs.contents.files' , ['file' => $file, 'accordionParent' => 'filesAccordion']) @endforeach
@endif {{-- TextLessons --}} @if(!empty($textLessonsWithoutChapter) and count($textLessonsWithoutChapter))
@foreach($textLessonsWithoutChapter as $textLesson) @include('design_1.web.courses.show.tabs.contents.text_lessons' , ['textLesson' => $textLesson, 'accordionParent' => 'textLessonsAccordion']) @endforeach
@endif {{-- Quizzes --}} @if(!empty($quizzes) and $quizzes->count() > 0)
@foreach($quizzes as $quiz) @include('design_1.web.courses.show.tabs.contents.quiz' , ['quiz' => $quiz, 'accordionParent' => 'quizAccordion']) @endforeach
@endif {{-- Certificates --}} @include('design_1.web.courses.show.tabs.contents.all_certificates')