@php $configData = Helper::appClasses(); @endphp @extends('layouts/layoutMaster') @section('title', __('Attendance Reports')) @section('vendor-style') @vite([ 'resources/assets/vendor/libs/apex-charts/apex-charts.scss', 'resources/assets/vendor/libs/flatpickr/flatpickr.scss' ]) @endsection @section('vendor-script') @vite([ 'resources/assets/vendor/libs/apex-charts/apexcharts.js', 'resources/assets/vendor/libs/flatpickr/flatpickr.js' ]) @endsection @section('page-script') @vite(['resources/assets/js/app/hrcore-attendance-reports.js']) @endsection @section('content')
{{ __('Attendance Rate') }}
{{ __('Total Present') }}
{{ __('Late Arrivals') }}
{{ __('Avg. Work Hours') }}
| {{ __('Month') }} | {{ __('Working Days') }} | {{ __('Present') }} | {{ __('Absent') }} | {{ __('Late') }} | {{ __('Half Day') }} | {{ __('Total Hours') }} | {{ __('Attendance %') }} |
|---|---|---|---|---|---|---|---|
| {{ $stat['month'] }} | {{ $workingDays }} | {{ $stat['present'] }} | {{ $stat['absent'] }} | {{ $stat['late'] }} | {{ $stat['half_day'] }} | {{ $stat['total_hours'] }} {{ __('hrs') }} |
{{ $attendancePercent }}%
|
| {{ __('Total') }} | -- | {{ $totalPresent }} | {{ $totalAbsent }} | {{ $totalLate }} | -- | {{ $totalHours }} {{ __('hrs') }} | {{ $attendanceRate }}% |