@extends('layouts.app') @section('title', 'Effectiveness Details') @section('content')

Effectiveness Evaluation

Edit Back
@include('training.partials.alerts')
Evaluation Details
Training: {{ $effectiveness->training?->training_code }} — {{ $effectiveness->training?->topic?->topic_name }}
Employee:{{ $effectiveness->training?->employee?->name }}
Type:{{ $effectiveness->evaluation_type }}
Date:{{ $effectiveness->evaluation_date?->format('M d, Y') }}
Method:{{ $effectiveness->evaluation_method }}
Status: {{ $effectiveness->effectiveness_status }}
Overall: @if($effectiveness->overall_effectiveness !== null)
{{ $effectiveness->overall_effectiveness }}%
@else — @endif
Monitored By:{{ $effectiveness->monitor?->name ?? '—' }}
Kirkpatrick Scores
@foreach([ 'Knowledge (L2)' => $effectiveness->knowledge_score, 'Skill (L3)' => $effectiveness->skill_score, 'Behavior (L3)' => $effectiveness->behavior_score, 'Results (L4)' => $effectiveness->results_score, ] as $label => $score)
{{ $label }}:
{{ $score !== null ? $score . '%' : '—' }}
@endforeach
@if($effectiveness->strengths || $effectiveness->areas_for_improvement || $effectiveness->recommendations)
Narrative
@if($effectiveness->strengths)
Strengths

{{ $effectiveness->strengths }}

@endif @if($effectiveness->areas_for_improvement)
Areas for Improvement

{{ $effectiveness->areas_for_improvement }}

@endif @if($effectiveness->recommendations)
Recommendations

{{ $effectiveness->recommendations }}

@endif
@endif
@if($effectiveness->follow_up_required)
Follow-up Required

Date: {{ $effectiveness->follow_up_date?->format('M d, Y') ?? '—' }}

@if($effectiveness->follow_up_notes)

Notes: {{ $effectiveness->follow_up_notes }}

@endif
@endif
Audit Trail
@include('training.partials.audit-timeline', ['logs' => $auditLogs])
@endsection