| Name : |
{{$salaryDetails->first_name}} {{$salaryDetails->last_name}} |
| Department : |
{{$salaryDetails->department_name}} |
| Designation : |
{{$salaryDetails->designation_name}} |
| Joining Date : |
{{date(" d-M-Y", strtotime($salaryDetails->date_of_joining))}} |
| Basic salary of the month : |
{{number_format($salaryDetails->basic_salary)}} |
@if(nCount($salaryDetailsToAllowance) > 0)
@foreach($salaryDetailsToAllowance as $allowance)
| {{$allowance->allowance_name}}: |
{{number_format($allowance->amount_of_allowance)}} |
@endforeach
@endif
| Net salary : |
{{number_format($salaryDetails->net_salary)}} |
| Taxable salary : |
{{number_format($salaryDetails->taxable_salary)}} |
| Income tax to pay for the month : |
{{number_format($salaryDetails->tax)}} |
@php
$companyTaxDeduction = 0;
$companyTaxDeduction = ($salaryDetails->tax * 70) / 100;
$employeeTaxDeduction = 0;
$employeeTaxDeduction = ($salaryDetails->tax * 30) / 100;
@endphp
| Company tax deduction : |
{{number_format(round($companyTaxDeduction))}} |
| Employee tax payable: |
{{number_format(round($employeeTaxDeduction))}} |
@if(nCount($salaryDetailsToDeduction) > 0)
@foreach($salaryDetailsToDeduction as $deduction)
| {{$deduction->deduction_name}} : |
{{number_format($deduction->amount_of_deduction)}} |
@endforeach
@endif
@if($salaryDetails->total_late_amount !=0)
| Late Amount : |
{{number_format($salaryDetails->total_late_amount)}} |
@endif
@if($salaryDetails->total_absence_amount !=0)
| Absence Amount : |
{{number_format($salaryDetails->total_absence_amount)}} |
@endif
@if($salaryDetails->total_overtime_amount != 0)
| Over Time : |
{{number_format($salaryDetails->total_overtime_amount)}} |
@endif
| Net salary to be paid : |
{{number_format($salaryDetails->gross_salary)}} |
| Total income tax deducted for the financial year : |
{{number_format($financialYearTax->totalTax)}} |