Account Department ({{ $history->createdBy->name ?? '-' }})
Status: {{ $history->status }}
Remark: {{ $history->remark }}
Action On:
{{ $history->created_at->format('d-m-Y h:i:s A') }}
Tentative Full & Final Date:
{{ $resignation->tentative_date ? date('d-m-Y', strtotime($resignation->tentative_date)) : 'N/A' }}
Final Exit Date:
{{ $resignation->final_exit_date ? date('d-m-Y', strtotime($resignation->final_exit_date)) : 'N/A' }}
Final F&F Date:
{{ $resignation->final_f_and_f_date ? date('d-m-Y', strtotime($resignation->final_f_and_f_date)) : 'N/A' }}
Payment Mode:
{{ $resignation->payment_mode ?? 'N/A' }}
Total Recovery
@if (isset($resignation->otherAmounts))
@foreach ($resignation->otherAmounts as $otherAmount)
{{ $otherAmount->title }}
{{ number_format($otherAmount->amount ?? 0, 2) }}
@endforeach
@endif
@if (isset($resignation->otherAmounts) && count($resignation->otherAmounts) > 0)
Actual Recovery
{{ number_format($resignation->actual_recovery ?? 0, 2) }}
Remaining Recovery
{{ number_format($resignation->remaining_recovery ?? 0, 2) }}
@else
No any recovery is pending.
@endif
Other Deduction
Deduction
{{ number_format($resignation->other_deduction ?? 0, 2) }}
Final Settlement
Salary
{{ number_format($resignation->salary_amount ?? 0, 2) }}
Remaining Recovery
-
{{ number_format($resignation->remaining_recovery ?? 0, 2) }}
Other Deduction
-
{{ number_format($resignation->other_deduction ?? 0, 2) }}
F&F Amount
{{ number_format($resignation->final_amount ?? 0, 2) }}