{{ __('Started At') }}
{{ __('Today') }} {{ $totalHoursToday }} {{ \Str::plural(__('Hour'),$totalHoursToday) }}
{{ __('This Week ') }} {{ $totalHoursThisWeek }} {{ \Str::plural(__('Hour'),$totalHoursThisWeek) }}
{{ __('This Month') }} {{ $totalHoursThisMonth }} {{ \Str::plural(__('Hour'),$totalHoursToday) }}
{{ __('Punch In at') }}
{{ !empty($item->startTime) ? $item->startTime->format('H:i A'): '' }}
{{ __('Punch Out at') }}
{{ !empty($item->endTime) ? $item->endTime->format('H:i A'): '' }}
# | {{ __('Date') }} | {{ __('Punch In') }} | {{ __('Punch Out') }} | {{ __('Total Hours') }} |
---|---|---|---|---|
{{ ++$i }} | {{ format_date($attendance->created_at) }} | {{ !empty($attendance->startTime) ? format_date($attendance->startTime,'H A'): '' }} | {{ !empty($attendance->endTime) ? format_date($attendance->endTime,'H A'): ''}} | {{ $attendance->totalHours }} |