| Payroll Name |
{{ $pamPayroll->short_description ?? 'N/A' }} |
| Period |
{{ \Carbon\Carbon::parse($pamPayRunPeriod->start_date)->format('Y-m-d') }} to
{{ \Carbon\Carbon::parse($pamPayRunPeriod->end_date)->format('Y-m-d') }} |
| Total Employees |
{{ $totalEmployees ?? 'N/A' }} |
| Total Gross Pay |
{{ number_format($totalEarnings ?? 0, 2, '.', ',') }} |
| Total Basic Pay |
{{ number_format($totalBasic ?? 0, 2, '.', ',') }} |
| Total Deductions |
{{ number_format($totalDeductions ?? 0, 2, '.', ',') }} |
| Net Pay |
{{ number_format($totalNetPay ?? 0, 2, '.', ',') }} |