@extends('layouts.user') @section('title', 'Late Check-in Report') @section('content')
@if($company)

{{ $company->name }}

{{ $company->address_1 }}{{ $company->address_2 ? ', ' . $company->address_2 : '' }}

@endif

Late Check-in Report

{{-- Export Buttons --}}
@forelse($lateCheckins as $row) @empty @endforelse
Duty ID Employee Name Site Date Scheduled Start Actual Start Delay
{{ $row->duty_number }} {{ $row->first_name }} {{ $row->last_name }} {{ $row->site_name }} {{ \Carbon\Carbon::parse($row->schedule_date)->format('Y-m-d') }} {{ \Carbon\Carbon::parse($row->scheduled_start)->format('H:i') }} {{ \Carbon\Carbon::parse($row->actual_start_at)->format('H:i') }} @php $scheduled = \Carbon\Carbon::parse($row->scheduled_start); $actual = \Carbon\Carbon::parse($row->actual_start_at); $diff = $scheduled->diff($actual)->format('%H:%I:%S'); @endphp {{ $diff }}
No late check-ins found for the selected period.
{{ $lateCheckins->links() }}
@endsection