@extends('layouts.admin') @section('title', 'Tax Deduction Reports') @section('content')

Tax Deduction Reports

Generate reports on all tax deductions.

@forelse($deductions as $deduction) @empty @endforelse
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.
@endsection