@include('new_layouts.header') @include('hrm.hrm_main',['hrm_header' => 'Manage Attendance List'])
| {{__('Employee')}} | @endif{{__('Date')}} | {{__('Status')}} | {{__('Clock In')}} | {{__('Clock Out')}} | {{__('Late')}} | {{__('Early Leaving')}} | {{__('Overtime')}} | @if(Gate::check('edit attendance') || Gate::check('delete attendance')){{__('Action')}} | @endif
|---|---|---|---|---|---|---|---|---|
| {{!empty($attendance->employee)?$attendance->employee->name:'' }} | @endif{{ \Auth::user()->dateFormat($attendance->date) }} | {{ $attendance->status }} | {{ ($attendance->clock_in !='00:00:00') ?\Auth::user()->timeFormat( $attendance->clock_in):'00:00' }} | {{ ($attendance->clock_out !='00:00:00') ?\Auth::user()->timeFormat( $attendance->clock_out):'00:00' }} | {{ $attendance->late }} | {{ $attendance->early_leaving }} | {{ $attendance->overtime }} | @if(Gate::check('edit attendance') || Gate::check('delete attendance'))@endif |