Withholding Tax Report
@if($selectedPeriod)
Withholding Tax Summary
Total Taxable Amount: {{ number_format($totalTaxableAmount, 2) }}
Total Tax Withheld: {{ number_format($totalTaxWithheld, 2) }}
Total Tax Paid: {{ number_format($totalTaxPaid, 2) }}
Tax Payable: {{ number_format($taxPayable, 2) }}
Tax Type Breakdown
@foreach($taxTypeBreakdown as $type => $amount)
{{ ucfirst($type) }}: {{ number_format($amount, 2) }}
@endforeach
@foreach($withholdingTaxTransactions as $transaction) @endforeach
Date Voucher No Type Description Payee Amount Tax Rate Tax Amount Status
{{ $transaction->voucher->date->format('Y-m-d') }} {{ $transaction->voucher->voucher_no }} {{ ucfirst($transaction->type) }} {{ $transaction->description }} {{ $transaction->payee_name }} {{ number_format($transaction->amount, 2) }} {{ number_format($transaction->tax_rate, 2) }}% {{ number_format($transaction->tax_amount, 2) }} {{ ucfirst($transaction->status) }}
@endif