@extends('adminlte::page') @section('title', 'View Bail Check-in') @section('content_header')
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 |
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' }} |
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') }} |