@extends('layouts.app',['path'=>'tax.exemptions'])
@section('title', 'Tax Exemptions - HRMS')
@section('content')
@can('tax_exemption.read')
Tax Exemptions
@can('tax_exemption.create')
@endcan
@include('partials.new_alerts')
| Name |
Identifier |
Expression |
Status |
Action |
@foreach ($taxExemptions as $taxExemption)
{{ $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
|
@endforeach
@endcan
@endsection