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

View File

@@ -90,7 +90,6 @@ class MarriageManagerController extends Controller
public function proposals(Request $request): View
{
$proposals = Marriage::with(['user:id,username', 'partner:id,username', 'ringItem:id,name,icon'])
->whereIn('status', ['pending', 'expired', 'rejected'])
->orderByDesc('proposed_at')
->paginate(20)
->withQueryString();