@php use App\Models\SuperAdmin\SaSettings; use App\Services\AddonService\IAddonService; $addonService = app(IAddonService::class); @endphp @extends('layouts/layoutMaster') @section('title', __('Settings')) @section('vendor-style') @vite([ 'resources/assets/vendor/libs/select2/select2.scss', ]) @endsection @section('vendor-script') @vite([ 'resources/assets/vendor/libs/select2/select2.js', ]) @endsection @section('content')
| @lang('Name') | @lang('Code') | @lang('Type') | @lang('Applicability') | @lang('Amount') | @lang('Percentage') | @lang('Actions') |
|---|---|---|---|---|---|---|
| {{ $adjustment->name }} | {{ $adjustment->code }} | @if($adjustment->type === 'benefit') @lang('Benefit') @else @lang('Deduction') @endif | @if($adjustment->applicability === 'global') @lang('Global') @else @lang('Employee-Specific') @endif | {{ $settings->currency_symbol . number_format($adjustment->amount, 2) }} | {{ $adjustment->percentage ?? '-' }}% |
@lang('No payroll adjustments found for this employee.')
@endifPayroll adjustments are additional benefits or deductions that are added to the employee's salary. You can add, edit, or delete adjustments as needed. This settings will be applied to all employees.