@extends('layouts.auth.app') @section('title', 'Individual Taxpayer - Generate Service Bill') @push('styles') @endpush @section('content')

Generate MDA Service Bill

Individual Taxpayer Information

Taxpayer Type
{{ $individual->TaxPayerTypeName ?? 'Individual' }}
Full Name
{{ trim(($individual->FirstName ?? '') . ' ' . ($individual->LastName ?? '')) }}
Taxpayer TIN
{{ $individual->TIN ?? 'N/A' }}
Taxpayer EIN
{{ $individual->IndividualRIN ?? 'N/A' }}
Mobile Number
{{ $individual->MobileNumber1 ?? 'N/A' }}
Contact Address
{{ $individual->ContactAddress ?? 'N/A' }}

Select MDA Services

0 services selected Total: ₦0.00
@if(count($mdaServices) > 0)
@foreach($mdaServices as $service) @endforeach
Service Year MDA Name Service Name Service Amount
{{ $service->TaxYear ?? 'N/A' }} {{ $service->MDAName ?? 'N/A' }} {{ $service->MDAServiceName ?? 'N/A' }} ₦{{ number_format($service->ServiceAmount ?? 0, 2) }}
@else

No MDA Services Available

There are no available MDA services for this taxpayer at this time.

@endif
@endsection @push('scripts') @endpush