- Date of Birth
- {{ $suspect->date_of_birth ? $suspect->date_of_birth->format('d M Y') : 'Not recorded' }}
- Gender
- {{ ucfirst($suspect->gender ?? 'Not recorded') }}
- Contact Number
- {{ $suspect->contact_number ?? 'Not recorded' }}
- ID Type
- {{ $idTypes[$suspect->id_type] ?? 'Not recorded' }}
- ID Number
- {{ $suspect->id_number ?? 'Not recorded' }}
- Address
- {{ $suspect->address ?? 'Not recorded' }}
@if($suspect->is_arrested)
- Arrest Date
- {{ $suspect->arrest_date ? $suspect->arrest_date->format('d M Y H:i') : 'Not recorded' }}
- Arrest Location
- {{ $suspect->arrest_location ?? 'Not recorded' }}
- Arresting Officer
-
@if($suspect->arrestingOfficer)
{{ $suspect->arrestingOfficer->rank }} {{ $suspect->arrestingOfficer->name }}
@else
Not recorded
@endif
@if($suspect->is_charged)
- Charges
- {{ $suspect->charges ?? 'Not specified' }}
@endif
@if($suspect->in_custody)
Custody Information
- Custody Location
- {{ $suspect->custody_location ?? 'Not recorded' }}
- Cell Number
- {{ $suspect->cell_number ?? 'Not recorded' }}
@endif
@else
This suspect has not been arrested.
@endif