@forelse ($chapter->chapterItems as $chapterItem)
@if ($chapterItem->type == 'lesson' || $chapterItem->type == 'live')
{{ truncate($chapterItem?->lesson?->title) }}
@elseif ($chapterItem->type == 'document')
{{ truncate($chapterItem?->lesson?->title) }}
@else
@forelse ($chapterItem?->quiz?->questions as $question)
@empty
{{ __('No questions found.') }}
@endforelse
@endif
@empty
{{ __('No lessons found.') }}
@endforelse