@extends('adminlte::page') @section('title', 'Case Report: ' . $case->case_number) @section('content_header')
Case Title | {{ $case->title }} |
---|---|
Crime Type | {{ $crimeTypes[$case->crime_type] ?? $case->crime_type }} |
Incident Date | {{ $case->incident_date ? $case->incident_date->format('F d, Y') : 'N/A' }} |
Incident Location | {{ $case->incident_location ?? 'N/A' }} |
Reported Date | {{ $case->reported_date ? $case->reported_date->format('F d, Y') : 'N/A' }} |
Police Station | {{ $case->station->name ?? 'N/A' }} |
---|---|
Reporting Officer | {{ $case->reportingOfficer->name ?? 'N/A' }} |
Lead Investigator | {{ $case->leadInvestigator->name ?? 'N/A' }} |
Case Status | {{ $case->getStatusLabelAttribute() }} |
Priority | {{ $case->getPriorityLabelAttribute() }} |
{!! nl2br(e($case->description)) !!}
# | Name | Type | Contact | Injury Status | @if($reportType == 'detailed')Address | @endif
---|---|---|---|---|---|
{{ $index + 1 }} | @if($victim->victim_type == 'individual') {{ $victim->first_name }} {{ $victim->last_name }} @else {{ $victim->organization_name }} @endif | {{ ucfirst($victim->victim_type) }} | {{ $victim->contact_phone ?? 'N/A' }} | @if($victim->injury_status) {{ ucfirst($victim->injury_status) }} @else N/A @endif | @if($reportType == 'detailed'){{ $victim->address ?? 'N/A' }} | @endif
# | Name | Status | @if($reportType == 'detailed')Contact | Address | Description | @endif
---|---|---|---|---|---|
{{ $index + 1 }} | {{ $suspect->first_name }} {{ $suspect->last_name }} | {{ ucfirst($suspect->status ?? 'Unknown') }} | @if($reportType == 'detailed'){{ $suspect->contact_phone ?? 'N/A' }} | {{ $suspect->address ?? 'N/A' }} | {{ Str::limit($suspect->description, 100) }} | @endif
# | Given By | Type | Date Recorded | Verification Status | @if($reportType == 'detailed')Statement Content | @endif
---|---|---|---|---|---|
{{ $index + 1 }} | {{ $statement->given_by_name }} | {{ ucfirst($statement->statement_type) }} | {{ $statement->recorded_date ? $statement->recorded_date->format('Y-m-d') : 'N/A' }} | @if($statement->is_verified) Verified @else Unverified @endif | @if($reportType == 'detailed')
{!! nl2br(e($statement->statement_content)) !!}
|
@endif
# | Tag Number | Type | Status | Collection Date | @if($reportType == 'detailed')Description | Current Custodian | @endif
---|---|---|---|---|---|---|
{{ $index + 1 }} | {{ $evidence->tag_number }} | {{ ucfirst($evidence->evidence_type) }} | {{ ucfirst(str_replace('_', ' ', $evidence->status)) }} | {{ $evidence->collection_datetime ? $evidence->collection_datetime->format('Y-m-d') : 'N/A' }} | @if($reportType == 'detailed'){{ Str::limit($evidence->description, 100) }} | {{ $evidence->currentCustodian->name ?? 'N/A' }} | @endif
# | Date | Type | Officer | Description |
---|---|---|---|---|
{{ $index + 1 }} | {{ $update->update_date ? $update->update_date->format('Y-m-d') : $update->created_at->format('Y-m-d') }} | {{ ucfirst($update->update_type) }} | {{ $update->officer->name ?? 'N/A' }} | {{ $update->description }} |
Report Generated By: {{ Auth::user()->name }}
Date & Time: {{ now()->format('F d, Y H:i') }}
Case Status: {{ $case->getStatusLabelAttribute() }}
Report ID: {{ md5($case->id . now()) }}
This is an official document of the Gambia Police Crime Case Management System.
CONFIDENTIAL - For official use only.