@extends('layouts.app') @section('title', 'Tax Codes') @section('breadcrumb')
Configure sales and purchase tax rates
| Code / Name | Rate | Type | Applies To | Status | Actions |
|---|---|---|---|---|---|
|
{{ $tax->name }}
{{ $tax->code }}
|
{{ number_format($tax->rate, 2) }}% | {{ ucfirst($tax->type) }} | @php $on=['sales'=>['#d1e7dd','#0a3622'],'purchase'=>['#fff3cd','#664d03'],'both'=>['#EBF3FB','#1B4F8A']]; [$bg,$fg]=$on[$tax->applicable_on]; @endphp {{ ucfirst($tax->applicable_on) }} | {{ $tax->is_active ? 'Active' : 'Inactive' }} |
@if(auth()->user()->hasPermission('settings','edit'))
|
| No tax codes yet. Add your first tax code using the form. | |||||