fix(chat): 修正双色球明细花费显示为 0 的问题

This commit is contained in:
2026-03-12 09:00:48 +08:00
parent a14761c498
commit 4606888b0c

View File

@@ -79,11 +79,11 @@
@endif
</td>
<td class="px-4 py-3 text-right font-mono text-sm text-gray-700">
{{ number_format($ticket->cost_amount) }}
{{ number_format($ticket->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($ticket->prize_amount) : '0' }}
{{ $won ? '+' . number_format($ticket->payout) : '0' }}
</td>
<td class="px-4 py-3 text-center">
@if ($issue->status === 'drawn')