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

Payment addition/deduction

Manage payroll addition and deduction types for {{ $company->name }}

@forelse(($types['addition'] ?? []) as $type) @empty @endforelse
Name EPF SOCSO EIS Tax HRDF Fixed Assigned to Default amount E/EA fields Enabled Actions
{{ $type->name }} @if($type->affects_epf) @else @endif @if($type->affects_socso) @else @endif @if($type->affects_eis) @else @endif @if($type->affects_tax) @else @endif @if($type->affects_hrdf) @else @endif @if($type->is_fixed) @else @endif {{ $type->assigned_to }} {{ $type->default_amount > 0 ? number_format($type->default_amount, 2) : '0' }} {{ $type->ea_fields ?: 'None' }} @if($type->enabled) @else @endif

No addition types found

@forelse(($types['deduction'] ?? []) as $type) @empty @endforelse
Name EPF SOCSO EIS Tax HRDF Fixed Assigned to Default amount E/EA fields Enabled Actions
{{ $type->name }} @if($type->category === 'statutory') Statutory @endif @if($type->affects_epf) @else @endif @if($type->affects_socso) @else @endif @if($type->affects_eis) @else @endif @if($type->affects_tax) @else @endif @if($type->affects_hrdf) @else @endif @if($type->is_fixed) @else @endif {{ $type->assigned_to }} {{ $type->default_amount > 0 ? number_format($type->default_amount, 2) : '0' }} {{ $type->ea_fields ?: 'None' }} @if($type->enabled) @else @endif

No deduction types found

Overtime Configuration

Configure overtime rates and rules here

@endsection