@extends('layouts.app',['path'=>'tax.exemptions']) @section('title', 'Tax Exemptions - HRMS') @section('content') @can('tax_exemption.read')
@include('partials.new_alerts')
Tax Exemptions List
@foreach ($taxExemptions as $taxExemption) @endforeach
Name Identifier Expression Status Action
{{ $taxExemption['name'] }}
{{ $taxExemption['slug'] }} {{ $taxExemption['expression'] }} @if ($taxExemption['status'] == 'active') Active @else Inactive @endif
@can('tax_exemption.manage_status') @if ($taxExemption['status'] == 'active') @else @endif @endcan {{-- @can('taxExemptions.delete') @endcan --}} @can('logs.read') @endcan
@endcan @endsection