@extends('web.student.index') @section('title', 'Detalhes') @section('content') @include('web.student.partials.sideBarClass')

Minhas aulas

>

Aula do dia {{ $detail_lesson->date_time->format('d/m') }}

Geral

Notes

@if(!empty($detail_lesson->teacher_review))

Avaliação do professor

Confira a sua avaliação

@else
Aguardando avaliação
@endif @if($detail_lesson->teacher_review)

Writing

Grammar

Listening

Pronunciation

@endif

Erros e elogios

Fique atento às observações do professor.

@if($detail_lesson->teacher_review)

{{ $detail_lesson->teacher_review->comments }}

@else
Aguardando feedback
@endif

Vocabulário da aula

@if ($detail_lesson->lesson_vocabulary()->count() > 0)
@foreach ($detail_lesson->lesson_vocabulary as $word)

{{ $word->word }}

{{ $word->translation }}

@if ($word->fixed_by_student) @else @endif
@endforeach
@else
Aguardando vocabulário
@endif
@if ($detail_lesson->notes()->count() > 0)

Anotações

Aqui temos todas as anotações que o aluno fez durante a aula. Ele também pode voltar aqui e adicionar mais anotações.

@foreach ($detail_lesson->notes as $note)

{{ $note->content }}

@endforeach @else

Você ainda não fez nenhuma anotação nessa aula.

Insira comentários, dúvidas, e curiosidades para consulta.

Avatar
@endif
Anotação
Fechar

Anotações

Salve anotações para mais tarde.

Salvar anotações

Cancelar

Homework

@if ($detail_lesson->lesson_homework()->count() > 0)
    @foreach ($detail_lesson->lesson_homework as $homework)
  • checked_by_student) class="active" @endif> @if ($homework->checked_by_student) check @else check @endif

    {{ $homework->title }}

    @if ($homework->link) Ver tarefa @endif
  • @endforeach
@else
Aguardando tarefas
@endif

Resumo

Resumo da aula passada, que já foi realizada e finalizada.

@if ($content) @foreach ($content as $item)

{{ $item['title'] }}

abrir
@foreach ($item['content'] as $block)

{{ $block->title }}

{{ $block->content }}

@if ($block->links)

Links

@foreach ($block->links as $link) {{ $link['title'] }} @endforeach
@endif
@endforeach
@endforeach @endif
@if ($detail_lesson->lesson_vocabulary()->count() > 0)
@foreach ($detail_lesson->lesson_vocabulary as $word)

{{ $word->word }}

{{ $word->translation }}

@if ($word->fixed_by_student) @else @endif
@endforeach
@else
Aguardando vocabulário
@endif
@endsection