@extends('admin.layouts.app') @section('title', "百家乐第 #{$round->id} 局下注明细") @section('content') @php require resource_path('views/admin/partials/list-theme.php'); @endphp @php $tableCellClass = 'px-4 py-3'; $badgeClass = $adminListBadgeBaseClass; @endphp
结算时间:{{ $round->settled_at?->format('Y-m-d H:i:s') ?? '未结算' }} · 结果:{{ $round->resultLabel() }} · 总点数:{{ $round->total_points }}
| 玩家 | 押注方向 | 押注金额 | 实际获得 | 是否中奖 | 下注时间 |
|---|---|---|---|---|---|
| {{ $bet->user?->username ?? '已注销' }} | {{ $betLabels[$bet->bet_type] ?? $bet->bet_type }} | {{ number_format($bet->amount) }} | {{ $won ? '+' . number_format($bet->payout) : '0' }} | @if ($won) 🎉 中奖 @else 未中 @endif | {{ $bet->created_at->format('H:i:s') }} |
| 本局无人下注 | |||||