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