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