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

Lesson: {{ $lesson->lesson_name ?? '' }}

Trainer: {{ $lesson->resource_person->name ?? '' }}

{!! $lesson->topic ?? '' !!}

Date: {{ Carbon\Carbon::parse($lesson->date ?? '')->format('jS F Y') }}

Start: {{ $lesson->start_time ?? '' }} | End: {{ $lesson->end_time ?? '' }}

@foreach ($evaluations as $value) @endforeach
Trainee Name Evaluation Marks
{{ $value->user->name ?? '' }}
Theoretical Portion
Citation of practical examples
Describing the power sector relevance
Capacity to make the topic understandable
Language proficiency
Capacity to increase trainees involvement
Timeliness
Capacity to involve multi disciplinary knowledge
Capacity to answer the question
Training materials
Capacity to control the class
Interaction with the trainees
Overall training capacity
{{ empty($value->theoretical_portion) ? 'Not given' : $value->theoretical_portion }}
{{ empty($value->citation_of_practical_examples) ? 'Not given' : $value->citation_of_practical_examples }}
{{ empty($value->describing_the_power_sector_relevance) ? 'Not given' : $value->describing_the_power_sector_relevance }}
{{ empty($value->capacity_to_make_the_topic_understandable) ? 'Not given' : $value->capacity_to_make_the_topic_understandable }}
{{ empty($value->language_proficiency) ? 'Not given' : $value->language_proficiency }}
{{ empty($value->capacity_to_increase_trainees_involvement) ? 'Not given' : $value->capacity_to_increase_trainees_involvement }}
{{ empty($value->timeliness) ? 'Not given' : $value->timeliness }}
{{ empty($value->capacity_to_involve_multi_disciplinary_knowledge) ? 'Not given' : $value->capacity_to_involve_multi_disciplinary_knowledge }}
{{ empty($value->capacity_to_answer_the_question) ? 'Not given' : $value->capacity_to_answer_the_question }}
{{ empty($value->training_materials) ? 'Not given' : $value->training_materials }}
{{ empty($value->capacity_to_control_the_class) ? 'Not given' : $value->capacity_to_control_the_class }}
{{ empty($value->interaction_with_the_trainees) ? 'Not given' : $value->interaction_with_the_trainees }}
{{ empty($value->overall_training_capacity) ? 'Not given' : $value->overall_training_capacity }}
@endsection