@extends('layouts.app', ['path' => 'reports.hr.employee-promotion'])
@section('title', 'Employee Promotion Report - HRMS')
@section('content')
Employee Promotion Report
@include('partials.new_alerts')
@include('compaines.reports.widgets.filter-widget', [
'reportType' => 'employee-promotion',
'filters' => [
'dateRange' => true,
'employee' => true,
'department' => true,
'allowanceType' => false,
'status' => true
]
])
@include('compaines.reports.widgets.report-table', [
'title' => 'Employee Promotion Report Results',
'tableId' => 'employeePromotionReportTable',
'tableBodyId' => 'reportTableBody',
'reportType' => 'employee-promotion',
'headers' => ['Employee ID','Employee', 'Previous Position', 'New Position', 'Promotion Date', 'Status', 'Letter Generated'],
'emptyIcon' => 'ti ti-trending-up',
'emptyTitle' => 'No employee promotion data available',
'emptyMessage' => 'Apply filters and click "View Report" to view employee promotion results'
])
@include('compaines.reports.widgets.document-view', [
'title' => 'Employee Promotion Letters',
'reportType' => 'employee-promotion'
])
@endsection