| Particulars |
Amount(+) |
Amount(-) |
| Basic |
{{$salary->basic_salary}} |
- |
| House Allowance |
{{$salary->house_rent}} |
- |
| Medical Allowance |
{{$salary->medical}} |
- |
| Food Allowance |
{{$salary->food}} |
- |
| Conveyance Allowance |
{{$salary->conveyance}} |
- |
| Utility Allowance |
{{$salary->utility}} |
- |
| Others Allowance |
{{$salary->Others}} |
- |
@if((float)($payslip->bonus_amount ?? 0) > 0)
| {{ __('Bonus') }} |
{{ $payslip->bonus_amount }} |
- |
@endif
@if((float)($payslip->arrear_amount ?? 0) > 0)
| {{ __('Arrear') }} |
{{ $payslip->arrear_amount }} |
- |
@endif
@php $variableAllowances = is_array($payslip->variable_allowances) ? $payslip->variable_allowances : []; @endphp
@foreach($variableAllowances as $varKey => $varAmt)
@if((float) $varAmt > 0)
| {{ \App\Services\SalaryStructureService::labelForBreakdownKey($varKey) }} |
{{ number_format((float) $varAmt, 2) }} |
- |
@endif
@endforeach
| Deductions |
|
|
@if($payslip->total_leave_without_pay>0)
| Unpaid Leave [{{$payslip->total_leave_without_pay}}{{__('Days')}}] |
- |
{{$payslip->total_leave_without_pay*$payslip->perday_salary}} |
@endif
@if($payslip->late_attendance>0)
| Extra Delay [{{$payslip->late_attendance}}{{__('Days')}}] |
- |
{{$payslip->late_attendance*$payslip->perday_salary}} |
@endif
@foreach($salary->normalizedCustomDeductions() as $customDed)
@if((float)($customDed['amount'] ?? 0) > 0)
| {{ $customDed['label'] ?: __('Other deduction') }} |
- |
{{ number_format((float) $customDed['amount'], 2) }} |
@endif
@endforeach
@if($payslip->provident_fund>0)
| Provident Fund |
- |
{{$payslip->provident_fund}} |
@endif
@if($payslip->total_absent>0)
| Absent({{$payslip->total_absent}}days X {{$payslip->perday_salary}}) |
- |
{{$payslip->total_absent*$payslip->perday_salary}} |
@endif
@if($payslip->advance_salary_received_id!=null)
@foreach(json_decode($payslip->advance_salary_received_id,true) as $advance_salary_recevied_id)
@php $advance_salary_payment=\App\Models\advance_salary_received::where('id',$advance_salary_recevied_id)->first() @endphp
| Advance Salary ({{$advance_salary_payment->month}}-{{$advance_salary_payment->year}}
){{__(' Payment')}}
|
- |
{{$advance_salary_payment->amount}} |
@endforeach
@endif
@if(!empty($payslip->pf_loan_deduction) && $payslip->pf_loan_deduction>0)
| PF Loan Deduction |
- |
{{$payslip->pf_loan_deduction}} |
@endif
@if(!empty($payslip->swf_employee_contribution) && $payslip->swf_employee_contribution>0)
| Staff Welfare Fund (Employee) |
- |
{{$payslip->swf_employee_contribution}} |
@endif
@if(!empty($payslip->swf_loan_deduction) && $payslip->swf_loan_deduction>0)
| SWF Loan Deduction |
- |
{{$payslip->swf_loan_deduction}} |
@endif
@if(\App\Services\PayrollIncomeTaxService::enabled() && (float)($payslip->taxable_income ?? 0) > 0)
| {{ __('Taxable income') }} |
{{ $payslip->taxable_income }} |
- |
@endif
@if(\App\Services\PayrollIncomeTaxService::enabled() && (float)($payslip->income_tax ?? 0) > 0)
| {{ \App\Services\PayrollIncomeTaxService::label() }} |
- |
{{ $payslip->income_tax }} |
@endif
| Sub Total |
{{$payslip->gross_salary}} |
{{$payslip->total_deductions}} |