@extends('layouts.admin') @section('title', 'Tax Deduction Reports') @section('content')
Generate reports on all tax deductions.
| Employee | Month | Type | Amount |
|---|---|---|---|
| {{ $deduction->employee->name ?? 'N/A' }} | {{ \Carbon\Carbon::parse($deduction->month)->format('F Y') }} | {{ ucwords(str_replace('_', ' ', $deduction->type)) }} | {{ number_format($deduction->amount, 2) }} |
| No deductions found for the selected criteria. | |||