@extends('web.teacher.index') @section('title', 'Alunos') @section('content') @include('web.teacher.partials.sideBarHoursWeek')

@if ($student->type == 'student') Aluno @else Professor @endif

>

{{ $student->profile ? $student->profile->name : 'Perfil Incompleto' }}

Anotação

Geral

Histórico

students

{{ $student->profile ? $student->profile->name : 'Perfil Incompleto' }}

@if($student->profile)

{{ $student->profile->city }} ({{ $student->profile->state }})

@endif
    @foreach ($student->interests as $interest)
  • #{{ $interest->name }}
  • @endforeach
    @foreach ($student->interests as $interest)
  • #{{ $interest->name }}
  • @endforeach
@if(count($student->levels) != 0)
avatar

Nível atual: {{ $student->levels->first()->prefix }}

{{ $student->levels->first()->name }}

@endif @isset($student->rating)
@for ($i = 0; $i < round($student->rating); $i++) Estrela @endfor @for ($i = 0; $i < 5 - round($student->rating); $i++) Estrela @endfor

Conheça o(a) aluno(a)

@if ($student->user_experience)

{{ $student->user_experience->details }}

@endif
@endisset @if($student->profile)

{{ date('d/m/Y', strtotime($student->profile->birth_date)) }}

cake

{{ $student->profile->city }}

localizacao
@endif

Escrita

{{ $student->user_progress->writing ?? 0 }}

Gramática

{{ $student->user_progress->reading ?? 0 }}

Pronúncia

{{ $student->user_progress->talking ?? 0 }}

Escuta

{{ $student->user_progress->listening ?? 0 }}
@foreach ($student->user_badges as $user_badge)
badges

{{ $user_badge->badge->name }}

@endforeach
@if($lessons->count() > 0)
@foreach ($lessons as $lesson)
students

Aula do dia {{ $lesson->date_time->format('d/m/Y (H:i)') }}

Status: {{ $lesson->statusLabel }}

Professor: {{ $lesson->teacher->profile->name }}

Ver detalhes @if( empty($lesson->teacher_review) ) Avaliar @endif
@endforeach
@else

Nenhuma aula encontrada com este aluno.

@endif
+

Esportes

+

Futebol

+

Cultura americana

+

Baladas

+

Cozinha

+

Academia

Fechar

Contato

Entre em contato com {{$student->profile->name}}

whatsapp

{{$student->profile->phone}}

email

Cancelar

@stop