Disciplinary Records

Manage active disciplinary actions

New Record
@forelse($records as $record)

{{ $record->member->full_name }}

Offense: {{ Str::limit($record->offense_type, 50) }}

Action: {{ Str::limit($record->discipline_type, 50) }}

Duration: {{ $record->start_date->format('M j, Y') }} - {{ $record->end_date ? $record->end_date->format('M j, Y') : 'Ongoing' }}

@empty

No Active Records

There are no active disciplinary records at this time.

@endforelse