@extends('layouts/contentNavbarLayout') @section('title', 'Account settings - Pages') @section('content')

Account Settings / Connections

@foreach ($audit_reports as $report) @if ($report['api_name'] === 'aadhar') @php $aadharData = json_decode($report['response'], true)['data'] ?? []; @endphp
Full Name{{ $aadharData['full_name'] ?? 'N/A' }}
Date of Birth{{ $aadharData['dob'] ?? 'N/A' }}
Gender{{ $aadharData['gender'] ?? 'N/A' }}
Aadhaar Number{{ $aadharData['aadhaar_number'] ?? 'N/A' }}
Care Of{{ $aadharData['care_of'] ?? 'N/A' }}
Zip Code{{ $aadharData['zip'] ?? 'N/A' }}
Mobile Verified{{ $aadharData['mobile_verified'] ? 'Yes' : 'No' }}
Reference ID{{ $aadharData['reference_id'] ?? 'N/A' }}
Share Code{{ $aadharData['share_code'] ?? 'N/A' }}
Aadhaar XMLDownload
Aadhaar ZIPDownload
Profile Image @if(!empty($aadharData['profile_image'])) Aadhaar Profile @else No Image Available @endif
Address {{ $aadharData['address']['house'] ?? '' }}, {{ $aadharData['address']['street'] ?? '' }}, {{ $aadharData['address']['landmark'] ?? '' }}, {{ $aadharData['address']['loc'] ?? '' }}, {{ $aadharData['address']['vtc'] ?? '' }}, {{ $aadharData['address']['subdist'] ?? '' }}, {{ $aadharData['address']['dist'] ?? '' }}, {{ $aadharData['address']['state'] ?? '' }}, {{ $aadharData['address']['country'] ?? '' }}, {{ $aadharData['address']['po'] ?? '' }}, {{ $aadharData['zip'] ?? '' }}

@endif @endforeach

@foreach ($audit_reports as $report) @if ($report['api_name'] === 'gst') @php $gstData = json_decode($report['response'], true)['data'] ?? []; @endphp
GSTIN{{ $gstData['gstin'] ?? 'N/A' }}
Business Name{{ $gstData['business_name'] ?? 'N/A' }}
Legal Name{{ $gstData['legal_name'] ?? 'N/A' }}
PAN Number{{ $gstData['pan_number'] ?? 'N/A' }}
GSTIN Status{{ $gstData['gstin_status'] ?? 'N/A' }}
Taxpayer Type{{ $gstData['taxpayer_type'] ?? 'N/A' }}
Nature of Business @if(!empty($gstData['nature_bus_activities'])) {{ implode(', ', $gstData['nature_bus_activities']) }} @else N/A @endif
Constitution of Business{{ $gstData['constitution_of_business'] ?? 'N/A' }}
Nature of Core Business{{ $gstData['nature_of_core_business_activity_description'] ?? 'N/A' }}
Date of Registration{{ $gstData['date_of_registration'] ?? 'N/A' }}
Date of Cancellation{{ $gstData['date_of_cancellation'] == "1800-01-01" ? 'N/A' : $gstData['date_of_cancellation'] }}
Aadhaar Validation{{ $gstData['aadhaar_validation'] ?? 'N/A' }}
Aadhaar Validation Date{{ $gstData['aadhaar_validation_date'] ?? 'N/A' }}
Field Visit Conducted{{ $gstData['field_visit_conducted'] ?? 'N/A' }}
State Jurisdiction{{ $gstData['state_jurisdiction'] ?? 'N/A' }}
Center Jurisdiction{{ $gstData['center_jurisdiction'] ?? 'N/A' }}
Address{{ $gstData['address'] ?? 'N/A' }}
Filing Status
@if (!empty($gstData['filing_status']) && is_array($gstData['filing_status'][0])) @foreach ($gstData['filing_status'][0] as $filing) @endforeach @else @endif
Return Type Tax Period Filing Status Date of Filing Financial Year Mode of Filing
{{ $filing['return_type'] ?? 'N/A' }} {{ $filing['tax_period'] ?? 'N/A' }} {{ $filing['status'] ?? 'N/A' }} {{ $filing['date_of_filing'] ?? 'N/A' }} {{ $filing['financial_year'] ?? 'N/A' }} {{ $filing['mode_of_filing'] ?? 'N/A' }}
No Filing Data Available

@endif @endforeach

@foreach ($audit_reports as $report) @if ($report['api_name'] === 'pan') @php $panData = json_decode($report['response'], true)['data'] ?? []; @endphp
Full Name{{ $panData['full_name'] ?? 'N/A' }}
PAN Number{{ $panData['pan_number'] ?? 'N/A' }}
Category{{ $panData['category'] ?? 'N/A' }}
Client ID{{ $panData['client_id'] ?? 'N/A' }}
Reference ID{{ $report['reference_id'] ?? 'N/A' }}

@endif @endforeach

@foreach ($audit_reports as $report) @if ($report['api_name'] === 'coi') @php $coiData = json_decode($report['response'], true)['data'] ?? []; @endphp
Company Name{{ $coiData['company_name'] ?? 'N/A' }}
CIN Number{{ $coiData['cin_number'] ?? 'N/A' }}
Company Type{{ ucfirst(str_replace('_', ' ', $coiData['company_type'] ?? 'N/A')) }}
Company Name Search{{ $coiData['company_name_search'] ?? 'N/A' }}
Client ID{{ $coiData['client_id'] ?? 'N/A' }}
Reference ID{{ $report['reference_id'] ?? 'N/A' }}

@endif @endforeach
@endsection