@extends('layouts.userapp') @section('content') @php use Carbon\Carbon; @endphp
@csrf @if(session('success'))
{{ session('success') }}
@endif
Overtime Checkin
Name {{$overtime->employee_first_name}}
Created Date {{ \Carbon\Carbon::parse($overtime->created_at)->format('j F Y') }}
Date {{ \Carbon\Carbon::parse($overtime->date)->format('j F Y') }}
Overtime For {{$overtime->overtime_for}}
Start Time Est {{$overtime->start_hours}}
End Time Est {{$overtime->end_hours}}
Total Hours {{$overtime->total_hours}}
Reason {{$overtime->reason}}
Status {{$overtime->status_text}}
Your Location Loading...
@if($checkins_checkouts->isNotEmpty())

CHECKIN LOG

@else

You have not checked in yet.

@endif
@endsection