@extends('layouts.app') @section('content')

Payment Deductions

{{ $company->name }} - Manage deductions and statutory contributions

Back to Settings New Deduction
@if(session('success')) @endif @if(session('error')) @endif
Payment Deductions Configuration
@if($deductions->count() > 0)
@foreach($deductions as $deduction) @endforeach
Name Type Amount/Rate Category Statutory Assigned to E/F Fields Enabled Actions
{{ $deduction->name }} @if($deduction->code) {{ $deduction->code }} @endif @if($deduction->is_statutory) Statutory @endif @if($deduction->description)
{{ $deduction->description }} @endif
{{ ucfirst($deduction->calculation_type ?? 'variable') }} @if($deduction->calculation_type === 'fixed' && $deduction->default_amount > 0) RM{{ number_format($deduction->default_amount, 2) }} @elseif($deduction->calculation_type === 'percentage' && $deduction->default_rate > 0) {{ $deduction->default_rate }}% @elseif($deduction->calculation_type === 'table') Table-based @else Variable @endif {{ $deduction->category }} @if($deduction->is_statutory) @else @endif {{ ucfirst($deduction->assigned_to) }} @if($deduction->einvoicing_field) {{ $deduction->einvoicing_field }} @else None @endif @if($deduction->enabled) Enabled @else Disabled @endif
@unless($deduction->is_statutory) @endunless
Showing {{ $deductions->firstItem() }} to {{ $deductions->lastItem() }} of {{ $deductions->total() }} deductions
{{ $deductions->links() }}
@else
No payment deductions configured

Set up deductions and statutory contributions for your employees.

Create First Deduction
@endif
Malaysian Statutory Deductions
EPF Employee (11%)

Employee Provident Fund contribution deducted from salary

SOCSO Employee

Social Security contribution based on SOCSO rate table

EIS Employee (0.2%)

Employment Insurance System - 0.2% of salary

Income Tax (MTD)

Monthly Tax Deduction based on LHDN tax table


Common Voluntary Deductions:
  • Insurance Premium: Health/life insurance contributions
  • Loan Repayment: Company loan or advance repayment
  • Union Dues: Trade union membership fees
  • Parking Fee: Company parking space rental
Religious/Voluntary:
  • Zakat: Islamic religious contribution (2.5%)
  • ASNB Investment: Unit trust investment scheme
  • Cooperative Savings: Company cooperative contributions
  • Charity Donation: Approved charitable organization donations
@push('scripts') @endpush @endsection