{{ $match->host->username }}
Host
@php $hd = getDivision($match->host->elo ?? 1200); @endphp
{{ $hd['icon'] }} {{ number_format($match->host->elo ?? 1200) }}
@if($match->status === 'completed')
{{ $match->score_host }}–{{ $match->score_guest }}
@if($match->winner_id)
{{ $match->winner->username }} 🏆
@else
Draw
@endif
@else
VS
{{ $match->status === 'in_progress' ? '⚡ Live' : 'Menunggu' }}
@endif
{{ $match->guest->username }}
Guest
@php $gd = getDivision($match->guest->elo ?? 1200); @endphp
{{ $gd['icon'] }} {{ number_format($match->guest->elo ?? 1200) }}