{{ $todayAttendance->check_in_time->format('h:i A') }}
{{ $todayAttendance->check_out_time->format('h:i A') }}
{{ __('Currently Working') }}
{{ __('No attendance record for today') }}
{{ __('Attendance is recorded from device punches') }}{{ __('Today') }} {{ $totalHoursToday }} {{ \Str::plural(__('Hour'),$totalHoursToday) }}
{{ __('This Week ') }} {{ $totalHoursThisWeek }} {{ \Str::plural(__('Hour'),$totalHoursThisWeek) }}
{{ __('This Month') }} {{ $totalHoursThisMonth }} {{ \Str::plural(__('Hour'),$totalHoursToday) }}
{{ __('Device Punch') }}
{{ \Carbon\Carbon::parse($punch->punch_time)->format('h:i A') }}
{{ __('No activity today') }}
| # | {{ __('Date') }} | {{ __('Check In') }} | {{ __('Check Out') }} | {{ __('Shift Status') }} |
|---|---|---|---|---|
| {{ ++$i }} | {{ format_date($displayDate) }} | {{ $checkIn ? $checkIn->format('h:i A') : '-' }} | {{ $checkOut ? $checkOut->format('h:i A') : '-' }} | @if($checkOut) @if($isCompleteShift) {{ __('Complete Shift') }} ({{ $workedHours }}h) @else {{ __('Incomplete') }} ({{ $workedHours }}h) @endif @else {{ __('Active') }} ({{ $workedHours }}h) @endif |
| {{ __('No attendance records found') }} | ||||