@extends('layouts.admin') @php $currencySymbol = App\Models\AppSetting::getValue('currency_symbol', '?'); @endphp @section('title', 'Tax & Charges Settings') @section('content')
Percentage taxes use their taxable base; fixed charges are added directly
| Name | Type | Rate / Amount | Description | Status | Actions |
|---|---|---|---|---|---|
| {{ $tax->name }} | @if($tax->type == 'gst') GST @elseif($tax->type == 'service_charge') Service Charge @elseif($tax->type == 'packaging_charge') Packaging @else Delivery Tax @endif | @if(($tax->calculation_type ?? 'percentage') === 'fixed') {{ $currencySymbol }}{{ number_format((float) $tax->rate, App\Models\AppSetting::currencyDecimals()) }} @else {{ rtrim(rtrim($tax->rate, '0'), '.') }}% @endif | {{ Str::limit($tax->description, 30) ?? '-' }} | ||
No Taxes ConfiguredAdd your first tax using the form. |
|||||