@extends('layouts.master') @section('content')
{{ $pageTitle }}

Please fill in the form below to add a tax band for {{$pamTaxTable->description}}. Enter the starting and ending amounts for the tax band, along with the tax percentage. Select the status of the tax band and check the "Last band" option if it's the final band.

@if(isset($error) || session('error'))
{{ $error ?? session('error') }}
@endif
Add a Tax Band for {{$pamTaxTable->description}} Table
@csrf
Existing Tax Bands for {{$pamTaxTable->description}}
@foreach($pamTaxBands as $taxBand) @endforeach
From Amount To Amount Taxable Amount Tax Percentage Actions
{{ $taxBand->from_amount }} {{ $taxBand->to_amount }} {{ $taxBand->taxable_amount }} {{ $taxBand->tax_percentage }} @canany('Manage tax tables definitions') Del @endcanany
@endsection @section('scripts') @endsection