Tax Management

PAN, VAT, Audit and Clearance

{{ $profiles->total() }} tax profiles
@forelse ($profiles as $profile)

{{ $profile->client?->name ?: 'Tax Client' }}

PAN {{ $profile->pan_number }} · VAT {{ $profile->vat_number ?: 'N/A' }} · {{ $profile->tax_office ?: 'Tax office not set' }}

Audit: {{ $profile->audit_required ? ($profile->audit_status ?: 'Required') : 'Not required' }}

{{ $profile->status }}
@csrf

Create Dynamic Fiscal Year

@foreach ($fiscalYears as $year) @endforeach
@forelse ($profile->clearances->sortByDesc('fiscal_year') as $clearance) @empty @endforelse
Fiscal Year Status Filed Approved Update
{{ $clearance->fiscal_year }} {{ $clearance->status }} {{ optional($clearance->filed_at)->toFormattedDateString() ?: '-' }} {{ optional($clearance->approved_at)->toFormattedDateString() ?: '-' }}
@csrf @method('PATCH')
No fiscal years created yet.
@empty
No tax profiles found.
@endforelse
{{ $profiles->links() }}