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

125 lines
6.6 KiB
PHP

@extends('admin.layouts.app')
@section('title', "赛马第 #{$race->id} 场下注明细")
@section('content')
<div class="space-y-6">
{{-- 页头 --}}
@php
$horses = $race->horses ?? [];
$winner = collect($horses)->firstWhere('id', $race->winner_horse_id);
@endphp
<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">🐎 赛马 #{{ $race->id }} 场下注明细</h2>
<p class="text-xs text-gray-500 mt-1">
结算时间:{{ $race->settled_at?->format('Y-m-d H:i:s') ?? '未结算' }}
@if ($winner)
&nbsp;·&nbsp;胜者:<span class="font-bold text-indigo-600">{{ $winner['emoji'] ?? '' }}
{{ $winner['name'] ?? '' }}</span>
@endif
&nbsp;·&nbsp;注池:<span class="font-bold text-amber-600">{{ number_format($race->total_pool ?? 0) }}
金币</span>
</p>
</div>
<a href="{{ route('admin.game-history.horse') }}"
class="px-4 py-2 bg-gray-100 text-gray-700 rounded-lg text-sm font-bold hover:bg-gray-200 transition">
返回场次列表
</a>
</div>
{{-- 马匹信息 --}}
@if (count($horses) > 0)
<div class="bg-white rounded-xl shadow-sm border border-gray-100 p-5">
<div class="text-sm font-bold text-gray-700 mb-3">参赛马匹</div>
<div class="flex flex-wrap gap-3">
@foreach ($horses as $horse)
<div
class="px-4 py-2 rounded-lg {{ $horse['id'] === $race->winner_horse_id ? 'bg-amber-100 border-2 border-amber-400' : 'bg-gray-100' }}">
<div class="text-lg">{{ $horse['emoji'] ?? '🐎' }}</div>
<div
class="text-xs font-bold {{ $horse['id'] === $race->winner_horse_id ? 'text-amber-700' : 'text-gray-600' }}">
{{ $horse['name'] }}
@if ($horse['id'] === $race->winner_horse_id)
🏆
@endif
</div>
</div>
@endforeach
</div>
</div>
@endif
{{-- 下注明细表 --}}
<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
$betHorse = collect($horses)->firstWhere('id', $bet->horse_id);
$isWinner = $bet->horse_id === $race->winner_horse_id;
$won = ($bet->payout ?? 0) > 0;
@endphp
<tr class="hover:bg-gray-50 transition {{ $won ? 'bg-amber-50/50' : '' }}">
<td class="px-4 py-3 font-medium text-gray-800">
{{ $bet->user?->username ?? '已注销' }}
</td>
<td class="px-4 py-3 text-center">
@if ($betHorse)
<span
class="px-2 py-0.5 rounded-full text-xs font-bold {{ $isWinner ? 'bg-amber-100 text-amber-700' : 'bg-gray-100 text-gray-600' }}">
{{ $betHorse['emoji'] ?? '' }} {{ $betHorse['name'] ?? '' }}
</span>
@else
<span class="text-gray-400 text-xs">#{{ $bet->horse_id }}</span>
@endif
</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