@extends('admin.layouts.layout') @section('title', 'Taxes Management') @section('content')
@if($permission['create'] ?? true) Add Tax @endif @if($permission['destroy'] ?? true) @endif
@if($permission['edit'] || $permission['destroy'] || $permission['show']) @endif @if(isset($data) && $data->count() > 0) @foreach($data as $tax) @if($permission['edit'] || $permission['destroy'] || $permission['show']) @endif @endforeach @else @endif
Tax Title Tax Type Tax Rate Service Status Sort OrderAction
{{ $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['show'] ?? true) @endif @if($permission['edit'] ?? true) @endif @if($permission['destroy'] ?? true) @endif

No taxes found

@if($permission['create'] ?? true) Add First Tax @endif
@if(isset($data) && method_exists($data, 'links') && $data->count() > 0) @endif
@endsection @push('page_script') @endpush