@extends('layouts.admin') @section('title', 'Income Tax Withholding') @section('content')
Manage and report on income tax withheld.
| Employee | Period | Gross Income | Tax Withheld |
|---|---|---|---|
| {{ $item->employee->name ?? 'N/A' }} | {{ \Carbon\Carbon::parse($item->period)->format('F Y') }} | {{ number_format($item->gross_income, 2) }} | {{ number_format($item->tax_withheld, 2) }} |
| No withholding records found. | |||