@extends('layouts.member-app') @section('page-title')

{{ $pageTitle }}

@endsection @push('head-script') @endpush @section('content') @if($user->can('add_attendance'))
@endif
@lang('app.to')
@if($user->can('view_attendance'))
@endif

@lang('modules.attendance.totalWorkingDays')

  • {{ $totalWorkingDays }}

@lang('modules.attendance.daysPresent')

  • {{ $daysPresent }}

@lang('app.days') @lang('modules.attendance.late')

  • {{ $daysLate }}

@lang('modules.attendance.halfDay')

  • {{ $halfDays }}

@lang('app.days') @lang('modules.attendance.absent')

  • {{ (($totalWorkingDays - $daysPresent) < 0) ? '0' : ($totalWorkingDays - $daysPresent) }}

@lang('modules.attendance.holidays')

  • {{ $holidays }}
@if(!$checkHoliday)
@if($todayTotalClockin < $maxAttandenceInDay)

@lang('modules.attendance.clock_in')

@lang('modules.attendance.clock_in') IP

@if(is_null($currenntClockIn)) {{ \Carbon\Carbon::now()->timezone($global->timezone)->format($global->time_format) }} @else {{ $currenntClockIn->clock_in_time->timezone($global->timezone)->format($global->time_format) }} @endif
{{ $currenntClockIn->clock_in_ip ?? request()->ip() }}
@if(!is_null($currenntClockIn) && !is_null($currenntClockIn->clock_out_time))

{{ $currenntClockIn->clock_out_time->timezone($global->timezone)->format($global->time_format) }}

{{ $currenntClockIn->clock_out_ip }}
@endif
@if(is_null($currenntClockIn)) @else
{{ $currenntClockIn->working_from }} @endif
@if(is_null($currenntClockIn)) @endif @if(!is_null($currenntClockIn) && is_null($currenntClockIn->clock_out_time)) @endif
@else
@lang('modules.attendance.maxColckIn')
@endif
@endif
@lang('app.date') @lang('app.status') @lang('modules.attendance.clock_in') @lang('modules.attendance.clock_out') @lang('app.others')
@endsection @push('footer-script') @endpush