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

Tax Deductions

Manage employee tax deductions.

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

Add Tax Deduction

@endsection