{{ __('Timesheet') }} {{ $attendance->startDate }}
@if (!empty($attendance->created_at))
{{ __('First Punchedd In At') }}

{{ $attendance->created_at->format('Y-m-d H:i:s A') }}

@endif
{{ $totalHours }} {{ \Str::plural(__('Hour'), intval($totalHours)) }}
@if (!empty($attendance->updated_at))
{{ __('Last Punch In At') }}

{{ $attendance->updated_at->format('Y-m-d H:i:s A') }}

@endif
{{ __('Activity') }}
    @if (!empty($attendanceActivity)) @foreach ($attendanceActivity as $item)
  • {{ __('Punch In at') }}

    {{ !empty($item->startTime) ? $item->startTime->format('H:i A'): '' }}

  • @if (!empty($item->endTime))
  • {{ __('Punch Out at') }}

    {{ !empty($item->endTime) ? $item->endTime->format('H:i A'): '' }}


  • @endif @endforeach @endif