{{-- 文件功能:求婚记录页(含取消操作) @author ChatRoom Laravel @version 1.0.0 --}} @extends('admin.layouts.app') @section('title', '求婚记录') @section('content')

💌 求婚记录

← 返回总览
@forelse ($proposals as $p) @empty @endforelse
ID 发起方 目标 戒指 状态 求婚时间 过期时间 操作
{{ $p->id }} {{ $p->user?->username }} {{ $p->partner?->username }} {{ $p->ringItem?->icon }} {{ $p->ringItem?->name ?? '—' }} {{ ['pending' => '⏳ 等待中', 'rejected' => '❌ 已拒绝', 'expired' => '⏰ 已过期', 'married' => '✅ 已结婚', 'divorced' => '💔 已离婚'][$p->status] ?? $p->status }} {{ $p->proposed_at?->format('Y-m-d H:i') }} {{ $p->expires_at?->format('Y-m-d H:i') }} @if ($p->status === 'pending' && $p->expires_at?->isPast()) (已超时) @endif @if ($p->status === 'pending')
@csrf
@else @endif
暂无求婚记录
@if ($proposals->hasPages())
{{ $proposals->links() }}
@endif
@endsection