@extends('layouts/layoutMaster')
@section('title', __('Employee Demographics Report'))
@section('vendor-style')
@vite([
'resources/assets/vendor/libs/apex-charts/apex-charts.scss'
])
@endsection
@section('vendor-script')
@vite([
'resources/assets/vendor/libs/apex-charts/apexcharts.js'
])
@endsection
@section('page-script')
@vite(['resources/assets/js/employees/reports/demographics.js'])
@endsection
@section('content')
{{-- Breadcrumb --}}
{{-- Overview Statistics Cards --}}
{{-- Total Active Employees --}}
{{ __('Total Employees') }}
0
{{ __('Active employees') }}
{{-- Average Age --}}
{{ __('Average Age') }}
0
{{ __('years') }}
{{ __('Across all employees') }}
{{-- Average Tenure --}}
{{ __('Average Tenure') }}
0
{{ __('months') }}
{{ __('Time with company') }}
{{-- Profile Completion Rate --}}
{{ __('Profile Completion') }}
0
%
{{ __('Complete profiles') }}
{{-- Charts Row 1 --}}
{{-- Age Distribution --}}
{{-- Gender Distribution --}}
{{-- Charts Row 2 --}}
{{-- Tenure Distribution --}}
{{-- Probation Status Distribution --}}
{{-- Page Data for JavaScript --}}
@endsection