@extends('adminlte::page') @section('title', 'View Statement') @section('content_header')

Statement Details

Back to Statements @if(!$statement->is_verified && (Auth::user()->is_admin || Auth::id() != $statement->recorded_by_officer_id)) Verify Statement @endif Edit
@stop @section('content') @if (session('success')) @endif @if (session('error')) @endif

Statement Information

@switch($statement->statement_type) @case('victim') Victim @break @case('witness') Witness @break @case('suspect') Suspect @break @case('expert') Expert @break @case('officer') Officer @break @default {{ ucfirst($statement->statement_type) }} @endswitch

{{ $statement->statement_date->format('d M Y, h:i A') }}

{{ $statement->location_taken ?? 'Not specified' }}

{{ $statement->language_used ?? 'Not specified' }}

@if($statement->is_sworn) Yes @else No @endif

{{ $statement->recordedByOfficer->rank }} {{ $statement->recordedByOfficer->name }}

@if($statement->is_verified) Verified @if($statement->verified_by_officer_id) by {{ $statement->verifiedByOfficer->name }} on {{ $statement->verified_at->format('d M Y') }} @endif @else Not Verified @endif


{{ $statement->statement_content }}
@if($statement->verification_notes)
{{ $statement->verification_notes }}
@endif

Person Information

{{ $statement->given_by_name }}

{{ $statement->given_by_contact ?? 'Not provided' }}

{{ $statement->given_by_address ?? 'Not provided' }}

@if($statement->given_by_id_type && $statement->given_by_id_number)

{{ ucfirst(str_replace('_', ' ', $statement->given_by_id_type)) }}: {{ $statement->given_by_id_number }}

@else

Not provided

@endif

Attachments

@if($statement->signature_path)
Signature
@else

No signature provided

@endif
@if($statement->audio_path)
Download Audio
@else

No audio recording provided

@endif
@stop @section('css') @stop @section('js') @stop