@extends('layouts.app', ['path' => 'reports.payroll.tax-exemption'])
@section('title', 'Tax Exemption Report - HRMS')
@section('content')
Tax Exemption Report
@include('partials.new_alerts')
@include('compaines.reports.widgets.filter-widget', [
'reportType' => 'tax-exemption',
'filters' => [
'dateRange' => true,
'employee' => true,
'department' => true,
'allowanceType' => false,
'status' => true,
],
])
@include('compaines.reports.widgets.report-table', [
'title' => 'Tax Exemption Report Results',
'tableId' => 'taxExemptionReportTable',
'tableBodyId' => 'reportTableBody',
'reportType' => 'tax-exemption',
'headers' => ['Employee ID','Employee', 'Department', 'Exemption Type', 'Amount', 'Status', 'Date'],
'emptyIcon' => 'ti ti-receipt-off',
'emptyTitle' => 'No tax exemption data available',
'emptyMessage' => 'Apply filters and click "View Report" to view tax exemption results'
])
@endsection