🔴 Live Scoreboard - {{ $event->name }}

LIVE

Location

{{ $event->location }}

Date

{{ $event->event_date->format('M d, Y') }}

Organized By

{{ $event->club->name }}

Status

● LIVE NOW

@foreach($event->raceClasses as $raceClass)

{{ $raceClass->name }}

@if($raceClass->description)

{{ $raceClass->description }}

@endif
@if($raceClass->results->count() > 0)
@foreach($raceClass->results->take(3) as $index => $result)
@if($index === 0)
1
🏆
@elseif($index === 1)
2
🥈
@else
3
🥉
@endif

{{ $result->participant->driver_name }}

{{ $result->participant->vehicle_make }} {{ $result->participant->vehicle_model }}

{{ $result->completion_time }}

@if($result->participant->club)

{{ $result->participant->club->name }}

@endif
@endforeach
@foreach($raceClass->results as $result) @endforeach
Position Driver Vehicle Club Time Points
{{ $result->position }}
{{ $result->participant->driver_name }}
#{{ $result->participant->participant_number }}
{{ $result->participant->vehicle_make }} {{ $result->participant->vehicle_model }} {{ $result->participant->club->name ?? 'N/A' }} {{ $result->completion_time }} {{ $result->points }}
@else

No results available yet for this class.

Results will appear here as they are updated by coordinators.

@endif
@endforeach

This page auto-refreshes every 30 seconds to show the latest results. Last updated: {{ now()->format('h:i:s A') }}