@include('training.partials.alerts')
| Code |
Employee |
Topic |
Due |
Completed |
Status |
Score |
|
@forelse($trainings as $t)
{{ $t->training_code }} |
{{ $t->employee?->name }} |
{{ $t->topic?->topic_name }} |
{{ $t->due_date?->format('M d, Y') }}
@if($t->is_overdue)
{{ $t->days_overdue }}d
@endif
|
{{ $t->completed_at?->format('M d, Y') ?? '—' }} |
{{ $t->status }} |
{{ $t->effectiveness_score !== null ? $t->effectiveness_score . '%' : '—' }} |
|
@empty
| No matching records |
@endforelse
{{ $trainings->links() }}