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

Training Effectiveness

Post-training evaluation (Kirkpatrick levels 2–4)

New Evaluation
@foreach([ ['Total', $stats['total'], 'primary'], ['Effective', $stats['effective'], 'success'], ['Pending', $stats['pending'], 'warning'], ['Deleted', $stats['trashed'], 'secondary'], ] as [$label, $count, $color])
{{ $label }}
{{ $count }}
@endforeach
@include('training.partials.alerts')
@forelse($evaluations as $ev) @empty @endforelse
Training Employee Type Date Overall Status Method Follow-up Actions
{{ $ev->training?->training_code }}
{{ $ev->training?->topic?->topic_name }}
{{ $ev->training?->employee?->name }} {{ $ev->evaluation_type }} {{ $ev->evaluation_date?->format('M d, Y') }} @if($ev->overall_effectiveness !== null)
{{ $ev->overall_effectiveness }}%
@else @endif
{{ $ev->effectiveness_status }} {{ $ev->evaluation_method }} @if($ev->follow_up_required) {{ $ev->follow_up_date?->format('M d, Y') ?? 'Due' }} @else No @endif @if($ev->trashed())
@csrf
@csrf @method('DELETE')
@else
@csrf @method('DELETE')
@endif
No evaluations found
{{ $evaluations->links() }}
@endsection