@include('training.partials.alerts')
| Training |
Employee |
Type |
Date |
Overall |
Status |
Method |
Follow-up |
Actions |
@forelse($evaluations as $ev)
{{ $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())
@else
@endif
|
@empty
|
No evaluations found
|
@endforelse
{{ $evaluations->links() }}