@foreach ($round['matches'] as $match)
{{-- Player 1 --}}
@if ($match['player1'])
{{ $match['player1']['fighter_data']['name'] ?? 'Unknown' }}
@else
BYE
@endif
{{-- Player 2 --}}
@if ($match['player2'])
{{ $match['player2']['fighter_data']['name'] ?? 'Unknown' }}
@else
BYE
@endif