EARNINGS
Basic Salary
TZS {{ number_format($payroll->basic_salary, 0) }}
@if($payroll->overtime_pay > 0)
Overtime Pay
TZS {{ number_format($payroll->overtime_pay, 0) }}
@endif
@if($payroll->bonus > 0)
Bonus
TZS {{ number_format($payroll->bonus, 0) }}
@endif
@if($payroll->allowances > 0)
Allowances
TZS {{ number_format($payroll->allowances, 0) }}
@endif
@if($payroll->advance_salary > 0)
Advance Salary
TZS {{ number_format($payroll->advance_salary, 0) }}
@endif
Total Gross Salary
TZS {{ number_format($payroll->gross_salary, 0) }}
DEDUCTIONS
@if($payroll->tax_deduction > 0)
Tax Deduction
TZS {{ number_format($payroll->tax_deduction, 0) }}
@endif
@if($payroll->social_security > 0)
Social Security
TZS {{ number_format($payroll->social_security, 0) }}
@endif
@if($payroll->pension_contribution > 0)
Pension Contribution
TZS {{ number_format($payroll->pension_contribution, 0) }}
@endif
@if($payroll->other_deductions > 0)
Other Deductions
TZS {{ number_format($payroll->other_deductions, 0) }}
@endif
Total Deductions
TZS {{ number_format($payroll->total_deductions, 0) }}