Print
Deduction slip
Employee Name: {{$deduction->employee->name}}
Employee ID: {{$deduction->employee->employee_id}}
Deduction Month
{{date('F-Y', strtotime($month))}}
Regular Deduction
Tax Deduction
{{$deduction->tax_deduction ? $deduction->tax_deduction : '0.00'}}/-TK
Provident Fund Deduction
{{$deduction->provident_fund_deduction ? $deduction->provident_fund_deduction : '0.00'}}/-TK
Other Deduction
{{$deduction->other_deduction ? $deduction->other_deduction : '0.00'}}/-TK
Total Regular Allowance
{{$deduction->tax_deduction + $deduction->provident_fund_deduction + $deduction->other_deduction}}/-TK
Others Deduction
@php $amount = 0; @endphp @foreach($other_deduction as $row)
{{$row->deduction_name}}
{{$row->deduction_amount}}/-TK @php $amount += $row->deduction_amount @endphp
@endforeach
Total Others Allowance {{$amount}}/-TK