{{ __('Name') }} |
{{ __('Amount') }} |
{{ __('Action') }} |
@if (!empty($allowances))
@foreach ($allowances as $allowance)
{{ $allowance->name }} |
{{ LocaleSettings('currency_symbol').' '. $allowance->amount }} |
@include('pages.payroll.allowances.actions', ['id' => $allowance->id])
@endforeach
@endif
{{ __('Name') }} |
{{ __('Amount') }} |
{{ __('Action') }} |
@if (!empty($deductions))
@foreach ($deductions as $deduction)
{{ $deduction->name }} |
{{ LocaleSettings('currency_symbol').' '. $deduction->amount }} |
@include('pages.payroll.deductions.actions', ['id' => $deduction->id])
@endforeach
@endif