Timesheet {{date('d M Y')}}
@if (!empty($todayAttendance) && !empty($todayAttendance->checkin))
Punch In at

{{format_date($todayAttendance->created_at,'d M Y')}} {{format_date($todayAttendance->checkin,'H:i a')}}

@endif
{{ $hrs_count }} hrs
@if ($checkin === true)
@elseif($checkin === false)
@endif
Statistics
@if (!empty($todayAttendance))

Today {{$todayAttendance->hours_difference}} {{\Str::plural('hr',$todayAttendance->hours_difference)}}

@endif

This Week {{$this_week}} {{\Str::plural('hr',$this_week)}}

This Month {{$this_month}} {{\Str::plural('hr',$this_month)}}

Today Activity
    @if (!empty($todayAttendance) && !empty($todayAttendance->checkin))
  • Punch In at

    {{format_date($todayAttendance->checkin,'H:i a')}}

  • @endif @if (!empty($todayAttendance) && !empty($todayAttendance->checkout))
  • Punch Out at

    {{format_date($todayAttendance->checkout,'H:i a')}}

  • @endif