{{-- 文件功能:后台婚姻管理总览页 统计卡片 + 最近结婚记录 + 最近离婚记录 @author ChatRoom Laravel @version 1.0.0 --}} @extends('admin.layouts.app') @section('title', '婚姻管理 - 总览') @section('content') {{-- 页面标题 --}}

💒 婚姻管理

婚姻系统总览,管理求婚、结婚、婚礼及参数配置

⚙️ 参数配置 🎊 婚礼档位
{{-- 统计卡片 --}}
💑
{{ $stats['total_married'] }}
当前已婚
💍
{{ $stats['total_pending'] }}
求婚中
💔
{{ $stats['total_divorced'] }}
已离婚
🎊
{{ $stats['total_weddings'] }}
婚礼场次
🎁
{{ number_format($stats['total_envelopes']) }}
红包总额(金)
{{ number_format($stats['claimed_amount']) }}
已领取(金)
{{-- 快捷入口 --}}
📋 婚姻列表 💌 求婚记录 🎊 婚礼红包 💞 亲密度日志
{{-- 最近已婚 --}}

💑 最近结婚

查看全部
@forelse ($recentMarriages as $m)
{{ $m->ringItem?->icon ?? '💍' }}
{{ $m->user?->username }} × {{ $m->partner?->username }}
{{ $m->married_at?->format('m/d') }}
{{ \App\Services\MarriageIntimacyService::levelName($m->level) }}
@empty
暂无已婚记录
@endforelse
{{-- 最近离婚 --}}

💔 最近离婚

查看全部
@forelse ($recentDivorces as $m)
{{ $m->user?->username }} × {{ $m->partner?->username }}
{{ match ($m->divorce_type) {'forced' => '强制','auto' => '超时','admin' => '管理员',default => '协议'} }}
{{ $m->divorced_at?->format('m/d') }}
@empty
暂无离婚记录
@endforelse
@endsection