{{-- 文件功能:历史任职记录页面 展示所有已撤销的职务记录(is_active=false),含任命人和撤销人信息 @author ChatRoom Laravel @version 1.0.0 --}} @extends('admin.layouts.app') @section('title', '历史任职记录') @section('content')
← 返回任命管理

历史任职记录

已撤销的职务记录(共 {{ $history->total() }} 条)

@forelse ($history as $up) @empty @endforelse
用户 职务 任命人 任命时间 撤销人 撤销时间 在职天数
{{ $up->user->username }} {{ $up->position->icon }} {{ $up->position->name }} {{ $up->position->department->name }} {{ $up->appointedBy?->username ?? '系统' }} {{ $up->appointed_at->format('Y-m-d') }} {{ $up->revokedBy?->username ?? '系统' }} {{ $up->revoked_at?->format('Y-m-d') ?? '—' }} {{ $up->duration_days }} 天
暂无历史记录
{{ $history->links() }}
@endsection