@extends('layouts.auth.app') @section('title', 'Operation Manager - Employer PAYE Liability Report') @section('content')

Operation Manager - Employer PAYE Liability Report

Detailed liability information for corporate tax payer

Corporate Tax Payer Information

{{ $companyData->TaxPayerTypeName ?? 'N/A' }}

{{ $companyData->TIN ?? 'N/A' }}

{{ $companyData->MobileNumber1 ?? 'N/A' }}

{{ $companyData->CompanyName ?? 'N/A' }}

{{ $companyData->CompanyRIN ?? 'N/A' }}

{{ $companyData->ContactAddress ?? 'N/A' }}

Associated Assets

@forelse($profileInformation as $asset) @empty @endforelse
Asset Type Asset Name Tax Payer Role Profile
{{ $asset->AssetTypeName ?? 'N/A' }} {{ $asset->AssetName ?? 'N/A' }} {{ $asset->TaxPayerRoleName ?? 'N/A' }} {{ $asset->ProfileDescription ?? 'N/A' }}
No associated assets found

Associated Bills

@forelse($taxPayerBill as $bill) @empty @endforelse
Date Bill ID Bill Amount Paid Amount Bill Status
{{ isset($bill->AssessmentDate) ? \Carbon\Carbon::parse($bill->AssessmentDate)->format('d/m/Y') : 'N/A' }} {{ $bill->AssessmentRefNo ?? 'N/A' }} {{ number_format($bill->BillAmount ?? 0, 2) }} {{ number_format($bill->SettlementAmount ?? 0, 2) }} {{ $bill->SettlementStatusName ?? 'N/A' }}
No associated bills found
Totals {{ number_format($billTotals['BillAmount'] ?? 0, 2) }} {{ number_format($billTotals['SettlementAmount'] ?? 0, 2) }}

Associated Rules

@forelse($assessmentRuleInformation as $rule) @empty @endforelse
Rule Year Rule Name Rule Amount Billed Amount Paid Amount
{{ $rule->TaxYear ?? 'N/A' }} {{ $rule->AssessmentRuleName ?? 'N/A' }} {{ number_format($rule->AssessmentAmount ?? 0, 2) }} {{ number_format($rule->BilledAmount ?? 0, 2) }} {{ number_format($rule->SettledAmount ?? 0, 2) }}
No associated rules found
Totals {{ number_format($ruleTotals['AssessmentAmount'] ?? 0, 2) }} {{ number_format($ruleTotals['BilledAmount'] ?? 0, 2) }} {{ number_format($ruleTotals['SettledAmount'] ?? 0, 2) }}

Associated Payments

@forelse($taxPayerPayment as $payment) @empty @endforelse
Payment Ref Payment Date Payment Amount
{{ $payment->PaymentRefNo ?? 'N/A' }} {{ isset($payment->PaymentDate) ? \Carbon\Carbon::parse($payment->PaymentDate)->format('d/m/Y') : 'N/A' }} {{ number_format($payment->Amount ?? 0, 2) }}
No associated payments found
Totals {{ number_format($paymentTotal ?? 0, 2) }}

Associated Staff

@forelse($staffList as $staff) @empty @endforelse
Staff RIN Staff Name Mobile Number
{{ $staff->IndividualRIN ?? 'N/A' }} {{ $staff->IndividualName ?? 'N/A' }} {{ $staff->MobileNumber1 ?? 'N/A' }}
No associated staff found
@endsection @push('scripts') @endpush