@foreach($checkins_checkouts as $checkin)
@if($checkin->checkin_type == 'IN (OT)')
IN
@elseif($checkin->checkin_type == 'OUT (OT)')
OUT
@endif
{{ date('g:i A', strtotime($checkin->checkin_datetime)) }}
{{ !empty($checkin->checkin_other_reason)
? $checkin->checkin_other_reason . ' (' . $checkin->checkin_reason . ')'
: $checkin->checkin_reason }}:
{{ $checkin->checkin_sublocality ?? $checkin->checkin_locality ?? "{$checkin->checkin_lat}, {$checkin->checkin_lng}" }}
@endforeach
@else
You have not checked in yet.
@endif