@extends('layouts.app') @section('title', 'Effectiveness Details') @section('content')
| 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)
|
| Monitored By: | {{ $effectiveness->monitor?->name ?? '—' }} |
{{ $effectiveness->strengths }}
@endif @if($effectiveness->areas_for_improvement){{ $effectiveness->areas_for_improvement }}
@endif @if($effectiveness->recommendations){{ $effectiveness->recommendations }}
@endifDate: {{ $effectiveness->follow_up_date?->format('M d, Y') ?? '—' }}
@if($effectiveness->follow_up_notes)Notes: {{ $effectiveness->follow_up_notes }}
@endif