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

Income Tax Withholding

Manage and report on income tax withheld.

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

Add Withholding Record

@endsection @push('scripts') @endpush