| INCOME |
AMOUNTS (RM) |
DEDUCTIONS |
AMOUNTS (RM) |
| Basic Salary |
{{ number_format($entity->salary, 2) }} |
EPF (EMPLOYEE) |
{{ number_format($entity->employee_epf, 2) }} |
| {{ $entity->addition1_desc }} |
{{ $entity->addition1 != 0 ? number_format($entity->addition1, 2) : '' }} |
SOCSO (EMPLOYEE) |
{{ number_format($entity->employee_socso, 2) }} |
| {{ $entity->addition2_desc }} |
{{ $entity->addition2 != 0 ? number_format($entity->addition2, 2) : '' }} |
PCB (EMPLOYEE) |
{{ number_format($entity->employee_pcb, 2) }} |
|
|
EIS (EMPLOYEE) |
{{ number_format($entity->employee_eis, 2) }} |
|
|
{{ $entity->deduction_desc }} |
{{ $entity->deduction != 0 ? number_format($entity->deduction, 2) : '' }} |
| TOTAL EARNINGS |
{{ number_format($total_earnings, 2) }} |
TOTAL DEDUCTIONS |
{{ number_format($total_deductions, 2) }} |
| EMPLOYER EPF: |
{{ number_format($entity->employer_epf, 2) }} |
NETT SALARY: |
{{ number_format($nett, 2) }} |
| EMPLOYER SOCSO: |
{{ number_format($entity->employer_socso, 2) }} |
|
|
| EMPLOYER EIS: |
{{ number_format($entity->employer_eis, 2) }} |
|
|
@endif