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