| Employee Name |
{{ $data['emp_info']->emp_name }} |
Job Duration |
{{ $data['emp_info']->emp_job_duration }} |
| Employee Id |
{{ $data['emp_info']->emp_id_no }} |
Notice Type |
{{ $data['emp_info']->emp_notice_type }} |
| Designation |
{{ $data['emp_info']->emp_designation }} |
Released Type |
{{ $data['emp_info']->emp_released_type }} |
| Mobile Number |
{{ $data['emp_info']->emp_mobile_number }} |
Released Note |
{{ $data['emp_info']->released_note }} |
| Recruitment Type |
{{ $data['emp_info']->emp_recruitment_type }} |
Released Reason |
{{ $data['emp_info']->released_reason }} |
| Branch Name |
{{ $data['emp_info']->emp_branch_name }} |
Joining Date |
{{ $data['emp_info']->emp_joining_date }} |
| Area Name |
{{ $data['emp_info']->emp_area }} |
Last Working Date |
{{ $data['emp_info']->emp_last_working_date }} |
| Zone Name |
{{ $data['emp_info']->emp_zone }} |
{{ $data['emp_info']->emp_released_type }} Effective Date |
{{ $data['emp_info']->emp_resign_effective_date }} |
| Project |
{{ $data['emp_info']->emp_project }} |
@if($data['emp_info']->emp_released_type == 'Resign')
Resign Date |
{{ $data['emp_info']->emp_resign_date }} |
@else
|
|
@endif
{{--
| Project Type |
{{ $data['emp_info']->emp_project_type }} |
|
|
--}}
@if(isset($data['org_facilities_info']->facilities) && count($data['org_facilities_info']->facilities) > 0)
| Particulars |
Own |
Org |
Interest |
Total |
| Payable Amount |
@foreach($data['org_facilities_info']->facilities as $org_facility)
| {{ $org_facility->name }} |
{{ (isset($org_facility->amount_info['own']) && $org_facility->amount_info['own'] != 0) ? number_format($org_facility->amount_info['own'], 2) : '-' }} |
{{ (isset($org_facility->amount_info['org']) && $org_facility->amount_info['org'] != 0) ? number_format($org_facility->amount_info['org'], 2) : '-' }} |
{{ (isset($org_facility->amount_info['interest']) && $org_facility->amount_info['interest'] != 0) ? number_format($org_facility->amount_info['interest'], 2) : '-' }} |
{{ (isset($org_facility->total_amount) && $org_facility->total_amount != 0) ? number_format($org_facility->total_amount, 2) : '-' }} |
@endforeach
@php
$earned_leave = $due_salary = $termination_amount = $bill_voucher = $payable_other = 0;
if(isset($data['getLatestAmountValue']['payable']->earned_leave)) {
$earned_leave = $data['getLatestAmountValue']['payable']->earned_leave;
}
if(isset($data['getLatestAmountValue']['payable']->due_salary)) {
$due_salary = $data['getLatestAmountValue']['payable']->due_salary;
}
if(isset($data['getLatestAmountValue']['payable']->termination_amount)) {
$termination_amount = $data['getLatestAmountValue']['payable']->termination_amount;
}
if(isset($data['getLatestAmountValue']['payable']->bill_voucher)) {
$bill_voucher = $data['getLatestAmountValue']['payable']->bill_voucher;
}
if(isset($data['getLatestAmountValue']['payable']->payable_other)) {
$payable_other = $data['getLatestAmountValue']['payable']->payable_other;
}
$ownTotalAmount = $data['org_facilities_info']->ownTotalAmount;
$orgTotalAmount = $data['org_facilities_info']->orgTotalAmount;
$interestTotalAmount = $data['org_facilities_info']->interestTotalAmount;
$payableTotalAmount = $data['org_facilities_info']->grandTotalAmount + $earned_leave + $due_salary + $termination_amount + $bill_voucher + $payable_other;
@endphp
| Earned Leave |
{{ ($earned_leave != 0) ? number_format($earned_leave, 2) : '-' }} |
| Due Salary |
{{ ($due_salary != 0) ? number_format($due_salary, 2) : '-' }} |
| Termination Amount |
{{ ($termination_amount != 0) ? number_format($termination_amount, 2) : '-' }} |
| Bill/Voucher |
{{ ($bill_voucher != 0) ? number_format($bill_voucher, 2) : '-' }} |
| Other Payable |
{{ ($payable_other != 0) ? number_format($payable_other, 2) : '-' }} |
| Sub-Total |
{{ ($ownTotalAmount != 0) ? number_format($ownTotalAmount, 2) : '-' }} |
{{ ($orgTotalAmount != 0) ? number_format($orgTotalAmount, 2) : '-' }} |
{{ ($interestTotalAmount != 0) ? number_format($interestTotalAmount, 2) : '-' }} |
{{ ($payableTotalAmount != 0) ? number_format($payableTotalAmount, 2) : '-' }} |
| Deduction Amount |
@php
$deductionTotalAmount = 0;
if(isset($data['getLatestAmountValue']['deduction']->total_value)) {
$deductionTotalAmount = $data['getLatestAmountValue']['deduction']->total_value;
}
@endphp
| Salary Advanced |
{{ (isset($data['emp_loan_info']['salary_advanced_loan_amount']) && $data['emp_loan_info']['salary_advanced_loan_amount'] != 0) ? number_format($data['emp_loan_info']['salary_advanced_loan_amount'], 2) : '-' }} |
| Vehicle Loan |
{{ (isset($data['emp_loan_info']['vehicle_loan_amount']) && $data['emp_loan_info']['vehicle_loan_amount'] != 0) ? number_format($data['emp_loan_info']['vehicle_loan_amount'], 2) : '-' }} |
| PF Loan |
{{ (isset($data['emp_loan_info']['pf_loan_amount']) && $data['emp_loan_info']['pf_loan_amount'] != 0) ? number_format($data['emp_loan_info']['pf_loan_amount'], 2) : '-' }} |
| Other Advanced |
{{ (isset($data['emp_loan_info']['other_advanced']) && $data['emp_loan_info']['other_advanced'] != 0) ? number_format($data['emp_loan_info']['other_advanced'], 2) : '-' }} |
| Wf Contri. |
{{ (isset($data['emp_loan_info']['wf_loan']) && $data['emp_loan_info']['wf_loan'] != 0) ? number_format($data['emp_loan_info']['wf_loan'], 2) : '-' }} |
| Other Loan |
{{ (isset($data['getLatestAmountValue']['other_loan']) && $data['getLatestAmountValue']['other_loan'] != 0) ? number_format($data['getLatestAmountValue']['other_loan'], 2) : '-' }} |
| Fine |
{{ (isset($data['getLatestAmountValue']['fine_loan']) && $data['getLatestAmountValue']['fine_loan'] != 0) ? number_format($data['getLatestAmountValue']['fine_loan'], 2) : '-' }} |
| Information From BM of RO |
{{ (isset($data['getLatestAmountValue']['deduction']->bm_rm) && $data['getLatestAmountValue']['deduction']->bm_rm != 0) ? number_format($data['getLatestAmountValue']['deduction']->bm_rm, 2) : '-' }} |
| PFC & Interest |
{{ (isset($data['getLatestAmountValue']['deduction']->provident_fund) && $data['getLatestAmountValue']['deduction']->provident_fund != 0) ? number_format($data['getLatestAmountValue']['deduction']->provident_fund, 2) : '-' }} |
| Notice Pay |
{{ (isset($data['getLatestAmountValue']['deduction']->notice_pay) && $data['getLatestAmountValue']['deduction']->notice_pay != 0) ? number_format($data['getLatestAmountValue']['deduction']->notice_pay, 2) : '-' }} |
| Excess Consumed Leave |
{{ (isset($data['getLatestAmountValue']['deduction']->excess_consumed_leave) && $data['getLatestAmountValue']['deduction']->excess_consumed_leave != 0) ? number_format($data['getLatestAmountValue']['deduction']->excess_consumed_leave, 2) : '-' }} |
| Salary Deduction |
{{ (isset($data['getLatestAmountValue']['deduction']->deduction_salary) && $data['getLatestAmountValue']['deduction']->deduction_salary != 0) ? number_format($data['getLatestAmountValue']['deduction']->deduction_salary, 2) : '-' }} |
| Dismissal Deduction |
{{ (isset($data['getLatestAmountValue']['deduction']->dismissal_deduction) && $data['getLatestAmountValue']['deduction']->dismissal_deduction != 0) ? number_format($data['getLatestAmountValue']['deduction']->dismissal_deduction, 2) : '-' }} |
| Maternity Leave Salary Return |
{{ (isset($data['getLatestAmountValue']['deduction']->ml_salary_return) && $data['getLatestAmountValue']['deduction']->ml_salary_return != 0) ? number_format($data['getLatestAmountValue']['deduction']->ml_salary_return, 2) : '-' }} |
| Sub-Total |
{{ ($deductionTotalAmount != 0) ? number_format($deductionTotalAmount, 2) : '-' }} |
| |
@php
$grandTotalAmount = $payableTotalAmount - $deductionTotalAmount;
@endphp
| Net Payable (TK) |
{{ ($grandTotalAmount != 0) ? number_format($grandTotalAmount, 2) : '-' }} |