{!! 'user' !!}
{{ ucwords($row->name) }}
{{ ucfirst($row->designation_name) }}
{!! Form::open(['id'=>'attendance-container-'.$row->id,'class'=>'ajax-form','method'=>'POST']) !!}
@if(count($row->attendance) > 0) @if($row->attendance[0]->late == "yes") @lang('app.yes') @else @lang('app.no') @endif @else -- @endif
@if(count($row->attendance) > 0) @if($row->attendance[0]->half_day == "yes") @lang('app.yes') @else @lang('app.no') @endif @else -- @endif
@forelse($row->attendance as $index => $attendance) @empty @endforelse
@lang('modules.attendance.clock_in') @lang('modules.attendance.clock_out') @lang('app.others')
{{ $attendance->clock_in_time->timezone($global->timezone)->format($global->time_format) }} @if(!is_null($attendance->clock_out_time)) {{ $attendance->clock_out_time->timezone($global->timezone)->format($global->time_format) }} @else - @endif @lang('modules.attendance.clock_in') IP: {{ $attendance->clock_in_ip }}
@lang('modules.attendance.clock_out') IP: {{ $attendance->clock_out_ip }}
@lang('modules.attendance.working_from'): {{ $attendance->working_from }}
@lang('messages.noAttendanceDetail')
{!! Form::close() !!}