{{ translate('Course Curriculum') }}

@foreach ($course->chapters as $chapter)
{{ $chapter->title }}
{{ translate('Lesson') }}: {{ $chapter?->topics?->count() }}
@foreach ($chapter->topics as $topic) @if ($topic?->topicable?->topic_type?->slug == 'video')
{{ $topic?->topicable?->title }}
{{ translate('Video') }}: {{ $topic?->topicable?->duration }}
@endif @if ($topic?->topicable?->topic_type?->slug == 'reading')
{{ $topic?->topicable?->title }}
{{ translate('Read') }}
@endif @if ($topic?->topicable?->topic_type?->slug == 'supplement')
{{ $topic?->topicable?->title }}
{{ translate('Read') }}
@endif @if ($topic?->topicable?->topic_type?->slug == 'assignment')
{{ $topic?->topicable?->title }}
{{ translate('Assignment') }}
@endif @if ($topic?->topicable?->topic_type?->slug == 'quiz')
{{ $topic?->topicable?->title }}
{{ translate('Quiz') }}
@endif @endforeach
@endforeach