@extends('admin.layouts.app') @section('title', get_setting('site_name').' | '.__('Separation Request').' #'.$row->id) @push('css') @endpush @section('content') @php $staff = $row->staff; $typeLabel = \App\Models\StaffSeparationRequest::separationTypeLabel($row->separation_type ?? $row->kind); $statusBadge = match ($row->status) { 'pending' => 'badge-warning', 'confirmed' => 'badge-success', 'reinstated' => 'badge-primary', 'rejected' => 'badge-secondary', default => 'badge-light', }; @endphp
{{ $typeLabel }} · {{ $staff?->user?->name ?? '—' }}
{{ __('No signature or seal uploaded for this employee.') }}
@endif