@extends('layouts.admin') @section('title','Tax Profiles') @section('heading','Tax Profiles') @section('content')

Create jurisdiction rule

Rules apply only to new checkouts. Every order stores an immutable calculation snapshot.

@csrf

Configured rules

@forelse($profiles as $profile)@empty@endforelse
NameScopeRateWindowStatus
{{ $profile->name }}
Priority {{ $profile->priority }}
{{ $profile->country }} / {{ $profile->service_type ?: 'all services' }}
{{ $profile->vendor?->name ?: 'all vendors' }}
{{ $profile->rate }}%
{{ $profile->tax_delivery ? 'Includes delivery' : 'Goods only' }}
{{ $profile->starts_at?->format('d M Y') ?: 'Always' }} – {{ $profile->ends_at?->format('d M Y') ?: 'open' }}{{ $profile->is_active?'Active':'Inactive' }}
@csrf @method('delete')
No tax is charged until a matching active profile exists.
{{ $profiles->links() }}
@endsection