| {{ __('form.Code') }} | {{ $employee->code }} |
| {{ __('form.Name') }} | |
| {{ __('form.Job-Position') }} | {{ $employee->employment->jobposition->name }} |
| {{ __('form.Branch') }} | {{ $employee->employment->branch->name }} |
| {{ __('form.Attendance-Schedule') }} | {{ $employee->employment->attendance->name }} |
{{ __('dashboard.Clock-In') }}
{{ __('form.Absent-Early') }}
{{ __('dashboard.Late-Clock-In') }}
{{ __('form.Sick') }}
{{ __('form.Permit') }}
{{ __('form.Alpha') }}
Leaves Taken
| {{ __('form.Day') }} | {{ __('form.Shift') }} | {{ __('dashboard.Clock-In') }} | {{ __('dashboard.Clock-Out') }} | {{ __('form.Time-Off') }} | {{ __('form.Overtime') }} |
|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($attendance->schedule_date)->format('l, d M Y') }} |
{{ $attendance->shift->name }} {{ $attendance->shift->schedule_in }} - {{ $attendance->shift->schedule_out }} |
{{-- Clock In --}}
@if($clockin)
@if($clockin->photo)
@endif
{{ $clockin->clock ?? '-' }} {{ $attendance_status_clockin }} @else - @endif |
{{-- Clock Out --}}
@if($clockout) @if($clockout->photo) @endif {{ $clockout->clock ?? '-' }} @else - @endif | {{ $timeoff_status }} | {{ $overtime_status }} |
—