@extends('layouts.app', ['pageTitle' => 'Taxes', 'pageSubtitle' => 'Track VAT, WHT, PAYE and other statutory finance obligations']) @section('content')

Create Tax Record

@csrf

Tax Records

@foreach($records as $r)@endforeach
NoTypePeriodTaxableTaxDueStatus
{{ $r->tax_number }}{{ $r->tax_type }}{{ $r->period_start }} - {{ $r->period_end }}₦{{ number_format($r->taxable_amount,2) }}₦{{ number_format($r->tax_amount,2) }}{{ $r->due_date }}{{ $r->status }}
@endsection