{{-- Mobile toggle (outside the aside) --}}

Course Content

{{-- Sidebar --}} {{-- Main lesson content --}}

{{ $lesson->chapter->lessonSection->module->course->subject->name }} ({{ $lesson->chapter->lessonSection->module->course->level->name }})

@forelse($lesson->videos as $video) @empty

No videos available for this lesson yet.

@endforelse {{-- ============================= --}} {{-- Lesson Questions Section --}} {{-- ============================= --}}

Questions about this lesson

{{-- Flash message --}} @if (session('success'))
{{ session('success') }}
@endif {{-- Question submission form --}}
@csrf @error('question')

{{ $message }}

@enderror
{{-- List of existing questions --}} @if($lesson->questions->isNotEmpty())
    @foreach ($lesson->questions as $question)
  • {{ $question->student->name }} asked:

    {{ $question->question }}

    @if($question->answer)

    Teacher’s reply: {{ $question->answer }}

    @else

    Awaiting a reply...

    @endif
  • @endforeach
@else

No questions have been asked yet — be the first!

@endif
← Back