@extends('layouts.app', ['title' => 'Estado del proceso de exploración', 'titleIcon' => asset('images/icons/Prueba_3.png')]) @section('content')

{{$student->fullName}} ({{$student->age}} años)

{{-- @if($student->talTestStatus && $student->potTestCompleted)--}} {{-- --}} {{-- Ver Resultados Resumidos--}} {{-- --}} {{-- @endif--}}

Campo de Talento


@if($talTestStatus === null || $talTestStatus == TestStatus::NOT_NEEDED)

Este niño/joven no aplica para el instrumento de Campo de Talento

@elseif($talTestStatus == TestStatus::TO_DO)

Este niño/joven no ha empezado a realizar el instrumento de Campo de Talento

@elseif($talTestStatus == TestStatus::TO_COMPLETE)

Este niño/joven no ha completado el instrumento de Campo de Talento

@else

Estado: {{ TestStatus::COMPLETED }}
Completada en: {{$talTestResult->updated_at->format('d/m/Y')}}

Talento Principal

{{$talTestResult->firstTalent->name}}

Nivel: {{$talTestResult->developmentLevel[0]->name}}

Talento Secundario

{{$talTestResult->secondTalent->name}}

Nivel: {{$talTestResult->developmentLevel[1]->name}}

@endif

Potencial de Aprehendizaje


@if(@$studentTest->status == TestStatus::COMPLETED) @else @endif Instrumento de Niño/joven

@if(@$studentTest->status === null)

Este niño/joven no aplica para el instrumento de Potencial de Aprehendizaje

@elseif(@$studentTest->status == TestStatus::TO_COMPLETE || @$studentTest->status == TestStatus::TO_DO)

Este niño/joven no ha completado el instrumento de Potencial de Aprehendizaje

@else

Estado: {{@$studentTest->status}}
Completada en: {{@$studentTest->updated_at->format('d/m/Y')}}

@endif

@if(@$teacherTest->status == TestStatus::COMPLETED) @else @endif Instrumento de Docente

@if(!$teacherTest) @elseif($teacherTest->status == TestStatus::TO_COMPLETE || $teacherTest->status == TestStatus::TO_DO)

Este docente no ha completado el instrumento de Potencial de Aprehendizaje

@else

Estado: {{$teacherTest->status}}
Completada en: {{$teacherTest->updated_at->format('d/m/Y')}}

@endif

@if(@$carerTest->status == TestStatus::COMPLETED) @else @endif Instrumento de Familia

@if(!$carerTest) @elseif($carerTest->status == TestStatus::TO_COMPLETE || $carerTest->status == TestStatus::TO_DO)

Este cuidador no ha completado el instrumento de Potencial de Aprehendizaje

@else

Estado: {{$carerTest->status}}
Completada en: {{$carerTest->updated_at->format('m/d/Y')}}

@endif
@if($student->lastPotTestResult)

Resultado Instrumentos Potencial de Aprehendizaje

{{$student->lastPotTestResult->developmentLevel->name}}

Ver Detalle del Resultado
@endif
Volver
@endsection