fix: 修复后台求婚记录列表未显示已成功和已离婚记录的问题

This commit is contained in:
2026-03-12 12:33:28 +08:00
parent 909d578547
commit d827c8a1df
5 changed files with 367 additions and 2 deletions
@@ -45,9 +45,11 @@
'pending' => 'bg-amber-100 text-amber-700',
'rejected' => 'bg-red-100 text-red-600',
'expired' => 'bg-gray-100 text-gray-500',
'married' => 'bg-emerald-100 text-emerald-700',
'divorced' => 'bg-purple-100 text-purple-700',
default => 'bg-gray-100 text-gray-600',
} }}">
{{ ['pending' => '⏳ 等待中', 'rejected' => '❌ 已拒绝', 'expired' => '⏰ 已过期'][$p->status] ?? $p->status }}
{{ ['pending' => '⏳ 等待中', 'rejected' => '❌ 已拒绝', 'expired' => '⏰ 已过期', 'married' => '✅ 已结婚', 'divorced' => '💔 已离婚'][$p->status] ?? $p->status }}
</span>
</td>
<td class="px-4 py-3 text-xs text-gray-500">{{ $p->proposed_at?->format('Y-m-d H:i') }}</td>