@component('mail::message') # 📄 Resignation Update — #{{ $resignation->id }} Your resignation request has been **{{ strtoupper($decision) }}** by **{{ $decidedBy }}**. @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) @if($resignation->last_working_day) **Last Working Day:** {{ $resignation->last_working_day->format('d M Y') }} @endif **Current Status:** {{ $resignation->status }} @endcomponent @if($remarks) **Remarks:** > {{ $remarks }} @endif @if($decision === 'APPROVED') 🎉 Congratulations! Your resignation has been approved. The clearance process will now begin — please coordinate with your department teams for a smooth exit. @endif @if($decision === 'DECLINED') ⚠️ Your resignation request was declined. Please contact your reporting manager or HR for further clarification. @endif @if($decision === 'RETAIN') 🤝 HR would like to initiate a retention discussion with you. Please connect with your manager or HR representative. @endif @if($decision === 'ABSCOND') 🚨 You have been marked as *Absconded*. HR and department teams have been notified for clearance and asset retrieval. @endif @component('mail::button', ['url' => url('/resignations/'.$resignation->id)]) View Resignation Details @endcomponent Thanks, **{{ $decidedBy }}** {{ config('app.name') }} @endcomponent