@extends('admin.layouts.app') @section('title', get_setting('site_name').' | '.__('Termination & Resignation')) @section('content')
| # | {{ __('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.') }} | |||||