fix: 修复后台求婚记录列表未显示已成功和已离婚记录的问题
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
<?php
|
||||
|
||||
$proposals = \App\Models\Marriage::with(['user:id,username', 'partner:id,username', 'ringItem:id,name,icon'])
|
||||
->whereIn('status', ['pending', 'expired', 'rejected'])
|
||||
->orderByDesc('proposed_at')
|
||||
->paginate(20);
|
||||
echo view('admin.marriages.proposals', compact('proposals'))->render();
|
||||
Reference in New Issue
Block a user