@extends('adminlte::page') @section('title', 'View Bail Check-in') @section('content_header')

Bail Check-in Details

@stop @section('content')

Check-in #{{ $checkin->id }}

Edit

Suspect Information

Full Name {{ $checkin->suspect->full_name }}
ID Number {{ $checkin->suspect->identification_number }}
Bail Application #{{ $checkin->bailApplication->id }} ({{ $checkin->bailApplication->created_at->format('d M Y') }})
Case Reference @if($checkin->bailApplication->case) {{ $checkin->bailApplication->case->case_number }} @else N/A @endif

Check-in Details

Status @if($checkin->status == 'present') Present @elseif($checkin->status == 'missed') Missed @elseif($checkin->status == 'excused') Excused @else {{ ucfirst($checkin->status) }} @endif
Presence @if($checkin->is_present) Present @else Absent @endif
Police Station {{ $checkin->policeStation->name }}
Scheduled Time {{ $checkin->scheduled_time ? $checkin->scheduled_time->format('d M Y, h:i A') : 'N/A' }}
Check-in Time {{ $checkin->checkin_time ? $checkin->checkin_time->format('d M Y, h:i A') : 'N/A' }}

Additional Information

{!! $checkin->notes ? nl2br(e($checkin->notes)) : 'No notes provided' !!}
Recorded By {{ $checkin->recordedBy ? $checkin->recordedBy->name : 'N/A' }}
Created By {{ $checkin->createdByUser ? $checkin->createdByUser->name : 'N/A' }}
Created At {{ $checkin->created_at->format('d M Y, h:i A') }}
Last Updated By {{ $checkin->updatedByUser ? $checkin->updatedByUser->name : 'N/A' }}
Last Updated At {{ $checkin->updated_at->format('d M Y, h:i A') }}
@stop