@extends('admin.layouts.app') @section('title', get_setting('site_name').' | '.__('Disciplinary incidents')) @section('content') @include('admin.disciplinary.partials.styles')
{{ __('Reported workplace incidents linked to disciplinary cases.') }}
| # | {{ __('Employee') }} | {{ __('Category') }} | {{ __('Date') }} | {{ __('Case') }} |
|---|---|---|---|---|
| {{ $r->id }} | {{ $r->staff->user->name ?? '—' }} | {{ $r->category->name ?? '—' }} | {{ $r->incident_date?->format('d M Y') }} | @if($r->disciplinaryCase) {{ \App\Models\DisciplinaryCase::statusLabel($r->disciplinaryCase->status) }} @else — @endif |
| {{ __('No incidents found.') }} | ||||