| {{ __('Name') }} | {{ __('Type') }} | {{ __('Amount') }} | {{ __('Taxable') }} | {{ __('Status') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|
|
{{ $allowance->name }}
@if($allowance->description)
{{ Str::limit($allowance->description, 50) }}
@endif
|
{{ ucfirst($allowance->type) }} |
@if($allowance->type == 'percentage')
{{ number_format($allowance->amount, 2) }}%
@else
{{ number_format($allowance->amount, 2) }} TZS
@endif
|
@if($allowance->is_taxable) Taxable @else Non-taxable @endif | @if($allowance->is_active) Active @else Inactive @endif | {{ __('Edit') }} |
| {{ __('No allowances found. Create one to get started.') }} | |||||