@extends('employee.layouts.app') @section('title', get_setting('site_name').' | '.__('Disciplinary')) @section('content')
{{ __('My disciplinary cases') }}
@if($settings?->grievance_instructions)
{!! nl2br(e($settings->grievance_instructions)) !!}
@endif @forelse($rows as $c) @empty @endforelse
#{{ __('Category') }}{{ __('Status') }}
{{ $c->id }} {{ $c->incident->category->name ?? '—' }} {{ $c->status }} {{ __('View') }}
{{ __('No records.') }}
{{ $rows->links() }}
@endsection