{{-- 文件功能:婚礼仪式记录页(含红包分发详情链接) @author ChatRoom Laravel @version 1.0.0 --}} @extends('admin.layouts.app') @section('title', '婚礼红包记录') @section('content')

🎊 婚礼红包记录

← 返回总览
@forelse ($ceremonies as $c) @empty @endforelse
ID 新人 档位 总金额 在线人数 领取进度 状态 时间 详情
{{ $c->id }} {{ $c->marriage?->user?->username }} × {{ $c->marriage?->partner?->username }} {{ $c->tier?->icon }} {{ $c->tier?->name ?? '—' }} {{ number_format($c->total_amount) }} 金 {{ $c->online_count ?? '—' }} @if ($c->total_amount > 0)
{{ $c->claimed_count }} / {{ $c->online_count ?? '?' }} 人
{{ number_format($c->claimed_amount) }} / {{ number_format($c->total_amount) }}
@else 无红包 @endif
{{ ['completed' => '已完成', 'active' => '进行中', 'pending' => '待触发', 'expired' => '已过期', 'cancelled' => '已取消'][$c->status] ?? $c->status }} {{ $c->ceremony_at?->format('Y-m-d H:i') }} @if ($c->total_amount > 0) 明细 @else @endif
暂无婚礼记录
@if ($ceremonies->hasPages())
{{ $ceremonies->links() }}
@endif
@endsection