{{-- 文件功能:婚礼红包领取明细页 @author ChatRoom Laravel @version 1.0.0 --}} @extends('admin.layouts.app') @section('title', '婚礼红包明细') @section('content')
{{ $ceremony->marriage?->user?->username }} × {{ $ceremony->marriage?->partner?->username }} — {{ $ceremony->tier?->icon }} {{ $ceremony->tier?->name ?? '婚礼' }} · 总额 {{ number_format($ceremony->total_amount) }} 金
| 用户 | 分配金额 | 状态 | 领取时间 |
|---|---|---|---|
| {{ $claim->user?->username }} | {{ number_format($claim->amount) }} 金 | @if ($claim->claimed) ✅ 已领取 @else 未领取 @endif | {{ $claim->claimed_at?->format('H:i:s') ?? '—' }} |
| 暂无领取记录 | |||