| {{ __('Name') }} | {{ __('Type') }} | {{ __('Amount') }} | {{ __('Applies To') }} | {{ __('Status') }} | {{ __('Actions') }} |
|---|---|---|---|---|---|
|
{{ $deduction->name }}
@if($deduction->description)
{{ Str::limit($deduction->description, 50) }}
@endif
|
{{ ucfirst($deduction->type) }} |
@if($deduction->type == 'percentage')
{{ number_format($deduction->amount, 2) }}%
@else
{{ number_format($deduction->amount, 2) }} TZS
@endif
|
@if($deduction->applies_to_all) {{ __('All Employees') }} @else {{ $deduction->employees_count }} {{ Str::plural(__('Employee'), $deduction->employees_count) }} @endif | @if($deduction->is_active) Active @else Inactive @endif | {{ __('Edit') }} |
| {{ __('No deductions found. Create one to get started.') }} | |||||