@extends('admin.layouts.app') @section('title', get_setting('site_name').' | '.__('Termination & Resignation')) @section('content')
{{ __('Record Termination') }}
@csrf
{{ __('Then confirm from the list below to deactivate the account.') }}
{{ __('Separation Requests') }}
@forelse($rows as $r) @can('User-edit') @if($r->status === 'pending') @endif @endcan @empty @endforelse
# {{ __('Type') }} {{ __('Employee') }} {{ __('Status') }} {{ __('Last Day') }} {{ __('Actions') }}
{{ $r->id }} {{ ucfirst($r->kind) }} {{ $r->staff?->user?->name ?? '—' }} @if($r->status === 'pending') {{ __('Pending') }} @elseif($r->status === 'confirmed') {{ __('Confirmed') }} @else {{ __('Rejected') }} @endif {{ $r->last_working_date?->format('Y-m-d') ?? '—' }} @can('User-edit') @if($r->status === 'pending') @endif @endcan
{{ __('No requests found.') }}
@if($rows->hasPages()) @endif
@endsection