| EARNINGS |
AMOUNT |
DEDUCTIONS |
AMOUNT |
| Basic Salary |
{{ formatCurrency($basicSalary) }} |
Undertime Deduction |
{{ formatCurrency($undertimeDed) }} |
| Night Differential |
{{ formatCurrency($nightDiff) }} |
SSS Contribution (EE) |
{{ formatCurrency($sss) }} |
| Overtime |
{{ formatCurrency($overtime) }} |
PhilHealth Contribution (EE) |
{{ formatCurrency($phic) }} |
| Holiday Pay |
{{ formatCurrency($holidayPay) }} |
Pag-IBIG Contribution (EE) |
{{ formatCurrency($hdmf) }} |
| Adjustment + |
{{ formatCurrency($adjustment) }} |
Withholding Tax |
{{ formatCurrency($tax) }} |
| Total Earnings |
{{ formatCurrency($payrollEntry->gross_pay) }} |
Total Deductions |
{{ formatCurrency($payrollEntry->total_deductions) }} |
| Days Worked: {{ $summary['days_worked'] ?? 0 }} |
Absences: {{ $summary['absences'] ?? 0 }} |
Leaves: {{ $summary['leaves'] ?? 0 }} |
| Expected Hours: {{ isset($summary['expected_hours']) ? $summary['expected_hours'].'h' : '0.00h' }} |
Rendered Hours: {{ isset($summary['rendered_hours']) ? $summary['rendered_hours'].'h' : '0.00h' }} |
Reg. OT: {{ isset($summary['reg_ot']) ? $summary['reg_ot'].'h' : '0h' }} |
| Night Diff: {{ isset($summary['night_diff']) ? $summary['night_diff'].'h' : '0h' }} |
Holiday: {{ isset($summary['holiday']) ? $summary['holiday'].'h' : '0h' }} |
|