@component('mail::message') # 🚨 Exit Pending — Resignation #{{ $resignation->id }} All department clearances are **complete**, but the employee has **not been exited** yet. @component('mail::panel') **Employee:** {{ optional($resignation->user)->name ?? 'N/A' }} **Applied On:** {{ optional($resignation->resignation_date)?->format('d M Y') ?? 'N/A' }} **Notice Period:** {{ $resignation->notice_period_months }} month(s) **Last Working Day (LWD):** {{ optional($resignation->last_working_day)?->format('d M Y') ?? 'N/A' }} **Overdue:** {{ $daysOverdue }} day{{ $daysOverdue === 1 ? '' : 's' }} past LWD @if($allClearedAtHuman) **All Clearances Completed At:** {{ $allClearedAtHuman }} @endif @endcomponent Please finalize the employee exit to complete the process. @component('mail::button', ['url' => url('/resignations/'.$resignation->id)]) Open Resignation & Exit @endcomponent Thanks, **HR Department** {{ config('app.name') }} @endcomponent