{{ $organization }}

Employee Payslip

Payroll Month: {{ $month }}

PF No{{ $pfNo }} Name{{ $staffName }}
Department{{ $department }} Designation{{ $designation }}
Bank{{ $bankName }} Account No{{ $accountNo }}
Earnings
@forelse($earnings as $item) @empty @endforelse
DescriptionAmount (₦)
{{ $item['name'] ?? $item['label'] ?? 'Earning' }}{{ number_format((float)($item['amount'] ?? 0), 2) }}
Gross Earnings{{ number_format((float)$gross, 2) }}
Deductions
@forelse($deductions as $item) @empty @endforelse
DescriptionAmount (₦)
{{ $item['name'] ?? $item['label'] ?? 'Deduction' }}{{ number_format((float)($item['amount'] ?? 0), 2) }}
Total Deductions{{ number_format((float)$totalDeductions, 2) }}
Gross Pay{{ number_format((float)$gross, 2) }}
Total Deductions{{ number_format((float)$totalDeductions, 2) }}
Net Pay{{ number_format((float)$net, 2) }}