We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6e0634 commit 909ab53Copy full SHA for 909ab53
resources/views/livewire/clue-display.blade.php
@@ -91,7 +91,12 @@ class="backdrop-blur-xl bg-gradient-to-br from-blue-900/90 via-indigo-900/90 to-
91
{{ $clue->category->name }}
92
</h2>
93
<div class="text-4xl md:text-5xl font-black text-white mt-2">
94
- ${{ number_format($clue->value) }}
+ @if($isDailyDouble && $wagerAmount > 0)
95
+ ${{ number_format($wagerAmount) }}
96
+ <span class="text-2xl md:text-3xl text-yellow-400 block mt-1">(Daily Double)</span>
97
+ @else
98
+ ${{ number_format($clue->value) }}
99
+ @endif
100
</div>
101
102
0 commit comments