Earnings
| Description | Amount |
|---|---|
| Base Salary | {{ number_format($payroll->base_salary, 2) }} |
| {{ $addition->reason }} | + {{ number_format($addition->amount, 2) }} |
Earnings
| Base Salary | {{ number_format($payroll->base_salary, 2) }} |
Deductions
| Description | Days | Amount |
|---|---|---|
| {{ $deduction->reason }} | {{ $deduction->days }} | - {{ number_format($deduction->amount, 2) }} |
Gross Earnings
{{ number_format($payroll->base_salary + $payroll->total_addition, 2) }}
Total Deductions
{{ number_format($payroll->total_deduction, 2) }}
NET PAY
{{ number_format($payroll->total_payable, 2) }}