@extends('layouts.app') @section('content')
Manage tax rates and composite tax groups for your transactions.
| Tax Name | Rate (%) | Type | Actions |
|---|---|---|---|
| {{ $tax->name }} | {{ number_format($tax->rate, 2) }}% | @if($tax->type === 'Output') Output @else Input @endif |
|
| No individual taxes defined. | |||
| Group Name | Included Taxes | Total Rate (%) | Actions |
|---|---|---|---|
| {{ $group->name }} | @foreach($group->taxes as $gtax) {{ $gtax->name }} ({{ $gtax->rate }}%) @endforeach | {{ number_format($group->total_rate, 2) }}% | |
| No tax groups defined. | |||