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