@extends('admin.layouts.app') @section('title', "双色球第 {$issue->issue_number} 期购买明细") @section('content')
开奖时间:{{ $issue->draw_time?->format('Y-m-d H:i:s') ?? '未开奖' }} @if ($issue->status === 'drawn') · 开奖号码: @php $balls = is_string($issue->winning_balls) ? json_decode($issue->winning_balls, true) : $issue->winning_balls; $reds = $balls['red'] ?? []; $blue = $balls['blue'] ?? null; @endphp @foreach ($reds as $r) {{ $r }} @endforeach @if ($blue) {{ $blue }} @endif @endif · 奖池:{{ number_format($issue->pool_amount ?? 0) }} 金币
| 玩家 | 投注号码 | 彩票类型 | 花费 | 奖金获得 | 中奖等级 | 下注时间 |
|---|---|---|---|---|---|---|
| {{ $ticket->user?->username ?? '已注销' }} |
@foreach ($selReds as $r)
{{ $r }}
@endforeach
@if ($selBlue)
{{ $selBlue }}
@endif
|
@if ($ticket->is_quick_pick) 随机机选 @else 自选号码 @endif | {{ number_format($ticket->cost_amount) }} | {{ $won ? '+' . number_format($ticket->prize_amount) : '0' }} | @if ($issue->status === 'drawn') @if ($won) 🎉 {{ $ticket->prize_level }}等奖 @else 未中奖 @endif @else 等待开奖 @endif | {{ $ticket->created_at->format('H:i:s') }} |
| 本期暂无人购买 | ||||||