Files
lkddi b62a9f6240 功能:后台游戏历史记录查询中心 + 游戏管理页实时统计
- 新增 GameHistoryController,提供各游戏历史记录查询接口
  - 百家乐:局次列表 + 单局下注明细(含结果分布统计)
  - 老虎机:转动记录含图案分布,支持结果类型/玩家名筛选
  - 赛马:场次列表 + 单场下注明细(含马匹信息展示)
  - 神秘箱子:投放/领取历史,支持箱子类型/领取状态筛选
  - 神秘占卜:签文等级分布统计 + 历史记录,支持等级/玩家名筛选
- 新增 /admin/game-history/ 路由组(stats + 各游戏历史 + 单局详情共9条路由)
- 游戏管理页(/admin/game-configs)优化:
  - 每个游戏卡片新增「📋 历史记录」直达按钮
  - 新增「📊 加载实时统计」按钮,AJAX 异步拉取并展示各游戏汇总卡片
- 更新 GAMES_TODO.md,标记通用待办已完成
2026-03-03 23:40:31 +08:00

116 lines
6.4 KiB
PHP

@extends('admin.layouts.app')
@section('title', "百家乐第 #{$round->id} 局下注明细")
@section('content')
<div class="space-y-6">
{{-- 页头 --}}
<div class="bg-white rounded-xl shadow-sm border border-gray-100 p-6 flex justify-between items-center">
<div>
<h2 class="text-lg font-bold text-gray-800">🎲 百家乐 #{{ $round->id }} 局下注明细</h2>
<p class="text-xs text-gray-500 mt-1">
结算时间:{{ $round->settled_at?->format('Y-m-d H:i:s') ?? '未结算' }}
&nbsp;·&nbsp;结果:
<span class="font-bold text-indigo-600">{{ $round->resultLabel() }}</span>
&nbsp;·&nbsp;总点数:<span class="font-bold">{{ $round->total_points }}</span>
</p>
</div>
<a href="{{ route('admin.game-history.baccarat') }}"
class="px-4 py-2 bg-gray-100 text-gray-700 rounded-lg text-sm font-bold hover:bg-gray-200 transition">
返回历史列表
</a>
</div>
{{-- 本局摘要 --}}
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
<div class="bg-white rounded-xl shadow-sm border border-gray-100 p-5">
<div class="text-2xl font-bold text-indigo-600">{{ number_format($round->bet_count ?? 0) }}</div>
<div class="text-xs text-gray-500 mt-1">参与下注人数</div>
</div>
<div class="bg-red-50 rounded-xl shadow-sm border border-red-100 p-5">
<div class="text-2xl font-bold text-red-600">{{ number_format($round->total_bet_big ?? 0) }}</div>
<div class="text-xs text-red-400 mt-1">押大总金额</div>
</div>
<div class="bg-blue-50 rounded-xl shadow-sm border border-blue-100 p-5">
<div class="text-2xl font-bold text-blue-600">{{ number_format($round->total_bet_small ?? 0) }}</div>
<div class="text-xs text-blue-400 mt-1">押小总金额</div>
</div>
<div class="bg-amber-50 rounded-xl shadow-sm border border-amber-100 p-5">
<div class="text-2xl font-bold text-amber-600">{{ number_format($round->total_payout ?? 0) }}</div>
<div class="text-xs text-amber-400 mt-1">本局派奖总额</div>
</div>
</div>
{{-- 下注明细表 --}}
<div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden">
<table class="w-full text-sm">
<thead class="bg-gray-50 border-b border-gray-100">
<tr>
<th class="px-4 py-3 text-left text-xs font-bold text-gray-500 uppercase">玩家</th>
<th class="px-4 py-3 text-center text-xs font-bold text-gray-500 uppercase">押注方向</th>
<th class="px-4 py-3 text-right text-xs font-bold text-gray-500 uppercase">押注金额</th>
<th class="px-4 py-3 text-right text-xs font-bold text-gray-500 uppercase">实际获得</th>
<th class="px-4 py-3 text-center text-xs font-bold text-gray-500 uppercase">是否中奖</th>
<th class="px-4 py-3 text-right text-xs font-bold text-gray-500 uppercase">下注时间</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-50">
@forelse ($bets as $bet)
@php
$betLabels = ['big' => '大', 'small' => '小', 'triple' => '豹子'];
$betColors = [
'big' => 'bg-red-100 text-red-700',
'small' => 'bg-blue-100 text-blue-700',
'triple' => 'bg-purple-100 text-purple-700',
];
$won = $bet->payout > 0;
@endphp
<tr class="hover:bg-gray-50 transition">
<td class="px-4 py-3 font-medium text-gray-800">
{{ $bet->user?->username ?? '已注销' }}
</td>
<td class="px-4 py-3 text-center">
<span
class="px-2 py-0.5 rounded-full text-xs font-bold {{ $betColors[$bet->bet_type] ?? 'bg-gray-100 text-gray-600' }}">
{{ $betLabels[$bet->bet_type] ?? $bet->bet_type }}
</span>
</td>
<td class="px-4 py-3 text-right font-mono text-sm text-gray-700">
{{ number_format($bet->amount) }}
</td>
<td
class="px-4 py-3 text-right font-mono text-sm {{ $won ? 'text-emerald-600 font-bold' : 'text-gray-400' }}">
{{ $won ? '+' . number_format($bet->payout) : '0' }}
</td>
<td class="px-4 py-3 text-center">
@if ($won)
<span
class="px-2 py-0.5 rounded-full text-xs font-bold bg-emerald-100 text-emerald-700">🎉
中奖</span>
@else
<span
class="px-2 py-0.5 rounded-full text-xs font-bold bg-gray-100 text-gray-500">未中</span>
@endif
</td>
<td class="px-4 py-3 text-right text-xs text-gray-400">
{{ $bet->created_at->format('H:i:s') }}
</td>
</tr>
@empty
<tr>
<td colspan="6" class="px-4 py-10 text-center text-gray-400 text-sm">本局无人下注</td>
</tr>
@endforelse
</tbody>
</table>
@if ($bets->hasPages())
<div class="px-4 py-3 border-t border-gray-100">
{{ $bets->links() }}
</div>
@endif
</div>
</div>
@endsection