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