Raffle Draw Event
{{ $raffle->property->title ?? 'Property N/A' }} | Raffle ID: #{{ $raffle->id }}
Fullscreen
Exit
Selection Wheel
Spinning to identify the raffle winner.
{{ $raffle->winner_id ? 'Re-Draw Winner' : 'Draw Winner' }}
Current Active Tickets
{{ number_format($totalActiveTickets) }}
winner_id ? '' : 'disabled' }}>
Reset Winner
Draw Summary
Confirmed Winner
@if($raffle->winner)
{{ $raffle->winner->name }}
Ticket #{{ $raffle->winner_ticket_number ?? 'N/A' }}
@else
No winner selected yet
@endif
Active Participants
{{ $totalActivePeople }} Participants
Showing a sample of {{ $entries->count() }} entries for the wheel animation. All active tickets are eligible for the draw.
@forelse($entries as $entry)
{{ $entry['buyer_name'] }}
Ticket #{{ $entry['ticket_number'] }}
ID: {{ $entry['id'] }}
@empty
No active tickets found.
@endforelse