@lang('app.menu.attendance') @lang('app.details')

@lang('app.menu.attendance') {{ $startTime->format($global->date_format) }}

@lang('modules.attendance.clock_in')

{{ $startTime->format($global->time_format) }}

{{ $totalTime }} @lang('app.hrs')
@lang('modules.attendance.clock_out')

{{ $endTime != '' ? $endTime->format($global->time_format) : '' }} @if (isset($notClockedOut)) (@lang('modules.attendance.notClockOut')) @endif

@lang('modules.employees.activity')
@foreach ($attendanceActivity->reverse() as $item)
  • @lang('modules.attendance.clock_in')

    {{ $item->clock_in_time->timezone($global->timezone)->format($global->time_format) }}.

  • @lang('modules.attendance.clock_out')

    @if (!is_null($item->clock_out_time)) {{ $item->clock_out_time->timezone($global->timezone)->format($global->time_format) }}. @else @lang('modules.attendance.notClockOut') @endif

@lang('app.edit') @lang('app.delete')
@endforeach