@extends('layouts.app') @section('title', 'Exit Management') @section('breadcrumbs')
@endsection @section('content')Manage employee offboarding and final settlements
| Employee | Exit Type | Initiated | Last Working Day | Checklist | Status | Settlement | Action |
|---|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($exit->employee?->first_name ?? 'X', 0, 1)) }}
{{ $exit->employee?->first_name }} {{ $exit->employee?->last_name }}
{{ $exit->employee?->employee_code }} ยท {{ $exit->employee?->department?->name ?? '' }}
|
{{ $exit->exit_type_label }} | {{ $exit->initiated_date->format('d M Y') }} | {{ $exit->last_working_date?->format('d M Y') ?? 'โ' }} |
|
{{ $exit->status_label }} | @if($exit->final_settlement_amount) OMR {{ number_format($exit->final_settlement_amount, 3) }} @else โ @endif | View โ |
Exit processes will appear here when initiated.