@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
| Return Type |
Tax Period |
Filing Status |
Date of Filing |
Financial Year |
Mode of Filing |
@if (!empty($gstData['filing_status']) && is_array($gstData['filing_status'][0]))
@foreach ($gstData['filing_status'][0] as $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' }} |
@endforeach
@else
| No Filing Data Available |
@endif
@endif
@endforeach