@extends('layouts.app', ['path' => 'reports.hr.employee-experience']) @section('title', 'Employee Experience Report - HRMS') @section('content')
@include('partials.new_alerts') @include('compaines.reports.widgets.filter-widget', [ 'reportType' => 'employee-experience', 'filters' => [ 'dateRange' => true, 'employee' => true, 'department' => true, 'allowanceType' => false, 'status' => false ] ]) @include('compaines.reports.widgets.report-table', [ 'title' => 'Employee Experience Report Results', 'tableId' => 'employeeExperienceReportTable', 'tableBodyId' => 'reportTableBody', 'reportType' => 'employee-experience', 'headers' => ['Employee ID','Employee', 'Department', 'Join Date', 'Experience Years', 'Certificate Status', 'Issue Date'], 'emptyIcon' => 'ti ti-certificate', 'emptyTitle' => 'No employee experience data available', 'emptyMessage' => 'Apply filters and click "View Report" to view employee experience results' ]) @include('compaines.reports.widgets.document-view', [ 'title' => 'Employee Experience Certificates', 'reportType' => 'employee-experience' ])
@endsection