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

Bail Check-ins

New Check-in
@stop @section('content')
@if(session('success'))
{{ session('success') }}
@endif

Filter Bail Check-ins

Reset
@forelse($checkins as $checkin) @empty @endforelse
ID Suspect Police Station Scheduled Time Check-in Time Status Recorded By Actions
{{ $checkin->id }} {{ $checkin->suspect->full_name_with_alias }} {{ $checkin->policeStation->name }} {{ $checkin->scheduled_time ? $checkin->scheduled_time->format('d/m/Y h:i A') : 'N/A' }} {{ $checkin->checkin_time ? $checkin->checkin_time->format('d/m/Y h:i A') : 'N/A' }} {!! $checkin->status_badge !!} {{ $checkin->recordedBy ? $checkin->recordedBy->name : 'N/A' }}
No check-in records found.
@stop @section('css') @stop @section('js') @stop