@extends('layouts.app', ['path' => 'reports.hr.employee-birthday'])
@section('title', 'Employee Birthday Report - HRMS')
@section('content')
Employee Birthday Report
@include('partials.new_alerts')
@include('compaines.reports.widgets.filter-widget', [
'reportType' => 'employee-birthday',
'filters' => [
'dateRange' => true,
'employee' => true,
'department' => true,
'allowanceType' => false,
'status' => false
]
])
@include('compaines.reports.widgets.report-table', [
'title' => 'Employee Birthday Report Results',
'tableId' => 'employeeBirthdayReportTable',
'tableBodyId' => 'reportTableBody',
'reportType' => 'employee-birthday',
'headers' => ['Employee ID','Employee', 'Department', 'Date of Birth', 'Age', 'Birthday This Month', 'Contact'],
'emptyIcon' => 'ti ti-cake',
'emptyTitle' => 'No employee birthday data available',
'emptyMessage' => 'Apply filters and click "View Report" to view employee birthday results'
])
@include('compaines.reports.widgets.document-view', [
'title' => 'Employee Birthday Documents',
'reportType' => 'employee-birthday'
])
@endsection