@extends('layouts/layoutMaster') @section('title', __('Probation Analysis')) @section('vendor-style') @vite([ 'resources/assets/vendor/libs/apex-charts/apex-charts.scss', 'resources/assets/vendor/libs/select2/select2.scss', 'resources/assets/vendor/libs/flatpickr/flatpickr.scss', 'resources/assets/vendor/libs/datatables-bs5/datatables.bootstrap5.scss', 'resources/assets/vendor/libs/datatables-responsive-bs5/responsive.bootstrap5.scss', ]) @endsection @section('vendor-script') @vite([ 'resources/assets/vendor/libs/apex-charts/apexcharts.js', 'resources/assets/vendor/libs/select2/select2.js', 'resources/assets/vendor/libs/flatpickr/flatpickr.js', 'resources/assets/vendor/libs/datatables-bs5/datatables-bootstrap5.js', ]) @endsection @section('page-script') @vite(['resources/assets/js/employees/probation-analysis.js']) @endsection @section('content')
{{-- Breadcrumb --}} {{-- Filter Section --}}
{{-- Department Filter --}}
{{-- Year Filter --}}
{{-- Action Buttons --}}
{{-- Overview Statistics Cards --}}
{{-- Current on Probation --}}
{{ __('On Probation') }}

0

{{ __('employees') }}
{{ __('Currently active') }}
{{-- Success Rate --}}
{{ __('Success Rate') }}

0

%
{{ __('Probation confirmed') }}
{{-- Failure Rate --}}
{{ __('Failure Rate') }}

0

%
{{ __('Probation failed') }}
{{-- Average Duration --}}
{{ __('Avg Duration') }}

0

{{ __('days') }}
{{ __('Until confirmation') }}
{{-- Charts Row --}}
{{-- Monthly Probation Trend --}}
{{ __('Monthly Probation Outcomes') }}
{{ __('Probation completions over the year') }}
{{-- Outcome Distribution --}}
{{ __('Outcome Distribution') }}
{{ __('All time statistics') }}
{{-- Department Outcomes --}}
{{ __('Department-wise Outcomes') }}
{{ __('Probation outcomes by department') }}
{{-- DataTables Section --}}
{{-- Current Probation Employees --}}
{{ __('Employees Currently on Probation') }}
{{ __('Employee') }} {{ __('Department') }} {{ __('Probation Start') }} {{ __('Probation End') }} {{ __('Days Remaining') }} {{ __('Status') }}
{{-- Upcoming Probation Endings --}}
{{ __('Upcoming Probation Endings') }}
{{ __('Next 30 days') }}
{{ __('Employee') }} {{ __('Department') }} {{ __('End Date') }} {{ __('Days Left') }} {{ __('Actions') }}
{{-- Page Data for JavaScript --}} @php $monthNames = [ __('Jan'), __('Feb'), __('Mar'), __('Apr'), __('May'), __('Jun'), __('Jul'), __('Aug'), __('Sep'), __('Oct'), __('Nov'), __('Dec') ]; @endphp @endsection