@extends('teacher.layouts.layouts') @section('content')
Teacher Image

{{ $teacher->name }}

Email: {{ $teacher->email ?? 'None' }}

Phone: {{ $teacher->phone ?? 'None' }}

Address: {{ $teacher->address ?? 'None' }}

Age: {{ $teacher->age ?? 'None' }}

Zoom Link: {{ $teacher->zoom_link ?? 'None' }}

Extra Zoom Link: {{ $teacher->extra_zoom_link ?? 'None' }}

Title: {{ $teacher->title ?? 'None' }}

Description: {{ $teacher->description ?? 'None' }}

Experience: {{ $teacher->experience ?? 'None' }}

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

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

Edit Profile
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
@endsection