@extends('admin.layouts.layouts') @section('content')

Teacher Details

{{ $teacher->name }}

Email:

Age: {{ $teacher->age }}

CV: @if ($teacher->cv) Download CV @else No CV available @endif

Phone: {{ $teacher->phone }}

Address: {{ $teacher->address }}

Channel Link: @if ($teacher->channel_link) {{ $teacher->channel_link }} @else No Channel Link available @endif

Educational Stages
@if ($teacherEducationalStages->isNotEmpty()) @foreach ($teacherEducationalStages as $stage)
{{ $stage->educationalStage->name }}
@endforeach @else

No Educational Stages Assigned

@endif
Stage Years
@if ($teacherEducationalStages->isNotEmpty()) @foreach ($teacherEducationalStages as $stage) @if ($stage->stageYear)
{{ $stage->stageYear->name }}
@else

No Stage Years Assigned for Educational Stage ID {{ $stage->educational_stage_id }}

@endif @endforeach @else

No Stage Years Assigned

@endif
Curriculum
@if ($teacherEducationalStages->isNotEmpty()) @foreach ($teacherEducationalStages as $stage) @if ($stage->curriculum)
{{ $stage->curriculum->name }}
@else

No Curriculum Assigned for Educational Stage ID {{ $stage->educational_stage_id }}

@endif @endforeach @else

No Curriculum Assigned

@endif
Back to List
@endsection