@extends('layouts.user') @section('title', 'Late Check-in Report') @section('content')
{{ $company->address_1 }}{{ $company->address_2 ? ', ' . $company->address_2 : '' }}
@endif| 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. | ||||||