公开频段历史百家乐开奖记录、点数分布以及最新珠盘路大趋势。
+| 局号 | +结算时间 | +骰子开出 | +总点数 | +开奖结果 | +全场总押注 | +全场派奖金币 | +
|---|---|---|---|---|---|---|
| #{{ $round->id }} | ++ {{ $round->settled_at ? $round->settled_at->format('m-d H:i') : '—' }} + | +
+
+ @for ($i = 1; $i <= 3; $i++)
+ @php $diceVal = $round->{'dice'.$i}; @endphp
+ @if ($diceVal)
+
+ {{ $diceVal }}
+
+ @else
+ —
+ @endif
+ @endfor
+
+ |
+ + {{ $round->total_points ?? '—' }} + | ++ @php + $resultStyles = [ + 'big' => 'bg-red-950/50 text-red-400 border-red-800/60', + 'small' => 'bg-blue-950/50 text-blue-400 border-blue-800/60', + 'triple' => 'bg-purple-950/50 text-purple-400 border-purple-800/60', + 'kill' => 'bg-gray-900 text-gray-500 border-gray-800', + ]; + $labelText = match ($round->result) { + 'big' => '大', + 'small' => '小', + 'triple' => '豹子', + 'kill' => '收割', + default => $round->result ?? '—', + }; + $borderStyle = $resultStyles[$round->result] ?? 'bg-gray-900 text-gray-500 border-gray-800'; + @endphp + @if ($round->result) + + {{ $labelText }} + + @else + 未结算 + @endif + | +
+
+
+ {{ number_format(($round->total_bet_big ?? 0) + ($round->total_bet_small ?? 0) + ($round->total_bet_triple ?? 0)) }}
+
+
+ 大:{{ number_format($round->total_bet_big ?? 0) }} |
+ 小:{{ number_format($round->total_bet_small ?? 0) }} |
+ 豹:{{ number_format($round->total_bet_triple ?? 0) }}
+
+
+ |
+ + {{ number_format($round->total_payout ?? 0) }} + | +
|
+ 暂无开奖记录 + |
+ ||||||