@extends('layouts.app') @section('title', 'Compliance Drill-Down — ' . $label) @section('content')

{{ ucfirst($type) }}: {{ $label }}

Drill-down to underlying training records

Back to Dashboard
@include('training.partials.alerts')
@forelse($trainings as $t) @empty @endforelse
Code Employee Topic Due Completed Status Score
{{ $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 . '%' : '—' }}
No matching records
{{ $trainings->links() }}
@endsection