@extends('layouts.app') @section('title', 'Tax Reports') @section('content')
| Tax | Rate | Taxable | Tax Amount | Count |
|---|---|---|---|---|
| {{ $row['tax_name'] }} | {{ $row['tax_rate'] }}% | {{ number_format($row['taxable_amount'], 2) }} | {{ number_format($row['tax_amount'], 2) }} | {{ $row['transactions_count'] }} |
Total Taxable: {{ number_format($reportData['totals']['taxable_amount'] ?? 0, 2) }}
Total Tax: {{ number_format($reportData['totals']['tax_amount'] ?? 0, 2) }}