@extends('layouts.master') @section('title', 'Taxes') @section('content')
{{-- Breadcrumb --}} {{-- Hero --}}
Tax Configuration

Tax Registry

Manage applicable tax rates and categories

{{ $taxes->count() }}
Total Taxes
{{-- Toolbar --}}
🔍
{{-- Table card --}}
Tax Name
Description
Rate
Actions
@forelse($taxes as $tax)
{{ $tax->tax_name }}
{{ $tax->tax_description ?: 'No description' }}
{{ $tax->tax_rate }}%
@empty
📋
No taxes found
Add your first tax rate to get started
@endforelse
No taxes match your search.
{{-- Delete confirm modal --}} {{-- Hidden delete form --}} @endsection