@extends('layouts.master') @section('content')
{{ $title }}
@if(isset($error) || session('error'))
{{ $error ?? session('error') }}
@endif
{{ strtoupper( $pamDeduDef->short_description)}} DEDUCTION DEFINITION
@csrf
@error('dedu_type_id')
{{ $message }}
@enderror
@error('dedu_group_id')
{{ $message }}
@enderror
@error('cont_def_id')
{{ $message }}
@enderror
@error('code')
{{ $message }}
@enderror
@error('general_ledger_code')
{{ $message }}
@enderror
@error('short_description')
{{ $message }}
@enderror
@error('long_description')
{{ $message }}
@enderror
@if($pamDeduDef->mode_of_calculation === 'percentage') @else @endif @error('figure_input')
{{ $message }}
@enderror
INSTRUCTIONS
  • Type of the Deduction. This refers to the category or type of the deduction, such as "Tax", "Pension Contribution", "Union Dues", etc.
  • Group of the Deduction. Grouping deductions helps organize them for easier management and reporting. Examples of groups include "Statutory Deductions", "Voluntary Deductions", etc.
  • General Ledger Code of the Deduction. This code corresponds to the general ledger account associated with the deduction for accounting purposes.
  • Name of the Deduction. Provide a descriptive name for the deduction to easily identify it.
  • Description of the Deduction. Optionally, provide additional details or information about the deduction.
  • Method of Calculation of the Deduction. Specify how the deduction amount is calculated, such as fixed amount, percentage of salary, etc.
  • Value of the Deduction. The actual amount or percentage value of the deduction.
  • Status of the Deduction. Indicate whether the deduction is active, inactive, pending, etc.
  • Close button. Close the window and return to the previous screen.
@endsection