| ID | Employee | Period | Base Salary | Additions | Deductions | Net Pay | Generated |
|---|---|---|---|---|---|---|---|
| #{{ $loop->iteration }} |
{{ substr($payroll->user?->name ?? 'NA', 0, 2) }}
{{ $payroll->user?->name ?? 'N/A' }}
{{ $payroll->user?->email ?? '' }}
|
{{ date('M Y', mktime(0, 0, 0, $payroll->month, 1, $payroll->year)) }} | {{ number_format($payroll->base_salary, 2) }} | +{{ number_format($payroll->total_addition, 2) }} | -{{ number_format($payroll->total_deduction, 2) }} | {{ number_format($payroll->total_payable, 2) }} | {{ $payroll->created_at?->format('M d') ?? '-' }} |
| TOTALS | {{ number_format($totalBase, 2) }} | +{{ number_format($totalAdditions, 2) }} | -{{ number_format($totalDeductions, 2) }} | {{ number_format($totalPayable, 2) }} | |||
No payroll records found matching your criteria.