@extends('layouts/layoutMaster')
@section('title', __('Employee Headcount 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/headcount.js'])
@endsection
@section('content')
{{-- Breadcrumb --}}
{{-- Overview Statistics Cards --}}
{{-- Total Active Employees --}}
{{ __('Total Active Employees') }}
0
{{ __('Loading...') }}
{{-- Departments Count --}}
{{ __('Total Departments') }}
0
{{ __('With active employees') }}
{{-- Designations Count --}}
{{ __('Total Designations') }}
0
{{ __('With active employees') }}
{{-- Average Employees per Department --}}
{{ __('Avg per Department') }}
0
{{ __('Employees') }}
{{-- Charts Row 1 --}}
{{-- Headcount Trend --}}
{{-- Employment Status Distribution --}}
{{-- Charts Row 2 --}}
{{-- Department Distribution --}}
{{-- Designation Distribution --}}
{{-- Page Data for JavaScript --}}
@endsection