Tournaments

Upcoming Atlas Darts tournaments open for registration.

@if($tournaments->isEmpty())

No upcoming tournaments scheduled. Check back soon!

@else
@foreach($tournaments as $tournament)
{{-- Type badge --}}
{{ str_replace('_', ' ', $tournament->type) }} CAP {{ $tournament->cap_rating }}
{{-- Details --}}
{{ $tournament->scheduled_day }}
{{ \Carbon\Carbon::parse($tournament->scheduled_time_cst)->format('g:i A') }} CST
{{ $tournament->game_format }} · {{ $tournament->handicap }}
Min {{ $tournament->min_entries }} entries to run
{{-- Status + Actions --}}
{{ ucfirst($tournament->status) }}
@endforeach
@endif