@extends('employee.layouts.app') @section('title', get_setting('site_name').' | '.__('Resignation Request')) @section('content')
{{ __('Submit and track your resignation requests with HR.') }}
| {{ __('Application date') }} | {{ __('Type') }} | {{ __('Last working date') }} | {{ __('Status') }} |
|---|---|---|---|
| {{ $r->application_date?->format('Y-m-d') ?? $r->created_at?->format('Y-m-d') }} | {{ \App\Models\StaffSeparationRequest::separationTypeLabel($r->separation_type ?? $r->kind) }} | {{ $r->last_working_date?->format('Y-m-d') ?? '—' }} | @if($r->status === 'pending') {{ __('Pending') }} @elseif($r->status === 'confirmed') {{ __('Confirmed') }} @else {{ __('Rejected') }} @endif |
| {{ __('No resignation requests yet.') }} | |||