{{ $shift->shift_name }}
|
@lang('modules.employees.startTime'):
{{ \Carbon\Carbon::createFromFormat('H:i:s', $shift->office_start_time)->format(company()->time_format) }}
@lang('modules.attendance.halfDay'):
{{ $shift->halfday_mark_time? \Carbon\Carbon::createFromFormat('H:i:s', $shift->halfday_mark_time)->format(company()->time_format): '' }}
@lang('modules.employees.endTime'):
{{ \Carbon\Carbon::createFromFormat('H:i:s', $shift->office_end_time)->format(company()->time_format) }}
|
@lang('modules.attendance.lateMark'): {{ $shift->late_mark_duration }}
@lang('modules.attendance.checkininday'): {{ $shift->clockin_in_day }}
@lang('modules.attendance.officeOpenDays'):
@foreach (json_decode($shift->office_open_days) as $item)
{{ $weekMap[$item] }}
@endforeach
|
@if ($manageShiftPermission == 'all')
|
@if ($shift->id != attendance_setting()->default_employee_shift)
@endif
|
@endif
@empty