@extends('admin.layouts.layout') @section('title', 'Taxes Management') @section('content')
| Tax Title | Tax Type | Tax Rate | Service | Status | Sort Order | @if($permission['edit'] || $permission['destroy'] || $permission['show'])Action | @endif|
|---|---|---|---|---|---|---|---|
| {{ $tax->title }} | {{ $tax->tax_type }} | {{ $tax->formatted_tax_rate }} | @if($tax->service) {{ $tax->service->service_name }} @else All Services @endif | {!! $tax->status_badge !!} |
|
@if($permission['edit'] || $permission['destroy'] || $permission['show'])
@if($permission['show'] ?? true) @endif @if($permission['edit'] ?? true) @endif @if($permission['destroy'] ?? true) @endif | @endif|
|
No taxes found @if($permission['create'] ?? true) Add First Tax @endif |
|||||||