@extends('layouts.admin') @section('title', 'Tax Deductions') @section('content')
Manage employee tax deductions.
| Employee | Month | Amount | Type |
|---|---|---|---|
| {{ $deduction->employee->name ?? 'N/A' }} | {{ \Carbon\Carbon::parse($deduction->month)->format('F Y') }} | {{ number_format($deduction->amount, 2) }} | {{ ucfirst($deduction->type ?? 'deduction') }} |
| No tax deductions found. | |||