@extends('layouts.auth.app') @section('title', 'Operation Manager - Tax Office Target Details') @section('content')

Tax Offices Target and Performance Details

Taxpayer details for {{ $monthName ?? '' }} {{ $year ?? '' }}

Back to Summary

Taxpayer Details

@forelse($drillDownData ?? [] as $row) @empty @endforelse @if(count($drillDownData ?? []) > 0) @endif
Taxpayer RIN Taxpayer Type Taxpayer Name Amount Paid
{{ $row->TaxpayerRIN ?? 'N/A' }} @php $typeId = $row->TaxpayerTypeID ?? 0; $typeName = match($typeId) { 1 => 'Individual', 2 => 'Company', 3 => 'Government', 4 => 'Special', default => 'N/A' }; $typeColor = match($typeId) { 1 => 'bg-blue-100 text-blue-800', 2 => 'bg-purple-100 text-purple-800', 3 => 'bg-green-100 text-green-800', 4 => 'bg-orange-100 text-orange-800', default => 'bg-gray-100 text-gray-800' }; @endphp {{ $typeName }} {{ $row->TaxpayerName ?? 'N/A' }} {{ number_format($row->settlementamount ?? 0, 2) }}

No records found

TOTAL {{ number_format(collect($drillDownData)->sum('settlementamount'), 2) }}
@endsection @push('scripts') @endpush