@extends('layouts.app', ['path' => 'reports.payroll.income-tax-deduction']) @section('title', 'Income Tax Deduction Report - HRMS') @section('content')
@include('partials.new_alerts') @include('compaines.reports.widgets.filter-widget', [ 'reportType' => 'income-tax-deduction', 'filters' => [ 'dateRange' => true, 'employee' => true, 'department' => true, 'allowanceType' => false, 'status' => false, ], ]) @include('compaines.reports.widgets.report-table', [ 'title' => 'Income Tax Deduction Report Results', 'tableId' => 'incomeTaxDeductionReportTable', 'tableBodyId' => 'reportTableBody', 'reportType' => 'income-tax-deduction', 'headers' => ['Employee ID','Employee', 'Department', 'Gross Salary', 'Tax Deducted', 'Net Salary', 'Date'], 'emptyIcon' => 'ti ti-receipt-tax', 'emptyTitle' => 'No tax deduction data available', 'emptyMessage' => 'Apply filters and click "View Report" to view tax deduction results' ])
@endsection @push('css') @endpush @push('scripts') @endpush