user
{{ ucwords($row->name) }}
{{ ucfirst($row->job_title) }}
{!! Form::open(['id'=>'attendance-container-'.$row->id,'class'=>'ajax-form','method'=>'POST']) !!}
@if(!is_null($row->clock_in_time)) {{ \Carbon\Carbon::createFromFormat('Y-m-d H:i:s', $row->clock_in_time)->timezone($global->timezone)->format($global->time_format) }} @else @endif
@if($row->late == "yes") @lang('app.yes') @else -- @endif
@if(!is_null($row->clock_out_time)) {{ \Carbon\Carbon::createFromFormat('Y-m-d H:i:s', $row->clock_out_time)->timezone($global->timezone)->format($global->time_format) }} @else -- @endif
@if($row->half_day == "yes") @lang('app.yes') @else -- @endif
{{ $row->working_from ?? '--' }}
{!! Form::close() !!}