| Basic & DA |
{{ number_format($salary->basic_da, 2) }} |
PF |
{{ number_format($salary->pf, 2) }} |
| HRA |
{{ number_format($salary->hra, 2) }} |
ESI |
{{ number_format($salary->esi, 2) }} |
| Conveyance |
{{ number_format($salary->conveyance, 2) }} |
Professional Tax |
{{ number_format($salary->pt, 2) }} |
| Washing Allowance |
{{ number_format($salary->washing_allowance, 2) }} |
Advance Deduction |
{{ number_format($salary->advance_deduction, 2) }} |
| Incentive |
{{ number_format($salary->incentive_amount, 2) }} |
|
|
| Attendance Bonus |
{{ number_format($salary->attendance_bonus, 2) }} |
|
|
| Gross Salary |
{{ number_format($salary->gross_salary, 2) }} |
Total Deductions |
{{ number_format($salary->pf + $salary->esi + $salary->pt + $salary->advance_deduction, 2) }} |
| NET PAY: |
₹ {{ number_format($salary->net_salary, 2) }} |
|
Rupees {{ \NumberFormatter::create('en_IN', \NumberFormatter::SPELLOUT)->format($salary->net_salary) }} Only
|