@extends('admin.layouts.app') @section('title', '神秘箱子历史记录') @section('content') @php require resource_path('views/admin/partials/list-theme.php'); @endphp @php $tableCellClass = 'px-4 py-3'; $badgeClass = $adminListBadgeBaseClass; @endphp
查询所有投放过的神秘箱子记录,含领取情况。
| 投放时间 | 类型 | 奖励范围 | 暗号 | 状态 | 领取者 | 实际奖励 | 领取时间 |
|---|---|---|---|---|---|---|---|
| {{ $box->created_at->format('m-d H:i:s') }} | {{ $typeInfo['label'] }} | {{ number_format($box->reward_min) }} ~ {{ number_format($box->reward_max) }} |
{{ $box->passcode ?? '—' }}
|
{{ $statusInfo['label'] }} | {{ $claim?->user?->username ?? '—' }} | @if ($claim) {{ $claim->reward_amount > 0 ? '+' : '' }}{{ number_format($claim->reward_amount) }} @else — @endif | {{ $claim?->created_at?->format('m-d H:i:s') ?? '—' }} |
| 暂无记录 | |||||||