@extends('layouts.userapp') @section('content') @php use Carbon\Carbon; @endphp
@csrf

YOUR CURRENTLY AT :

Loading...
@if(session('success'))
{{ session('success') }}
@endif

@if ($checkins_checkouts !== FALSE) @if (count($checkins_checkouts) > 0)
@foreach($checkins_checkouts as $chrow) {{-- IN/OUT column --}} @php $dt = strtotime($chrow->checkin_datetime); @endphp @endforeach
@if($chrow->checkin_type == 'IN') {{ $chrow->checkin_type }} @else {{ $chrow->checkin_type }} @endif {{ date('g:i:s A', $dt) }} @if(!empty($chrow->checkin_other_reason)) {{ $chrow->checkin_other_reason }} ({{ $chrow->checkin_reason }}): @else {{ $chrow->checkin_reason }}: @endif @if(!empty($chrow->checkin_sublocality)) {{ $chrow->checkin_sublocality }} @if(!empty($chrow->checkin_locality)) , {{ $chrow->checkin_locality }} @endif @else @if(!empty($chrow->checkin_locality)) {{ $chrow->checkin_locality }} @else {{ $chrow->checkin_lat }},{{ $chrow->checkin_lng }} @endif @endif
@endif @endif
@endsection