Admin Panel
Admin Panel
Kelola pemain, pertandingan, dan turnamen
@foreach([ ['Total Pemain', $stats['total_players'], 'ti-users', '#eff6ff', '#1d4ed8'], ['Total Match', $stats['total_matches'], 'ti-ball-football', '#f0fdf4', '#16a34a'], ['Antrian Aktif', $stats['active_queue'], 'ti-bolt', '#fef9c3', '#ca8a04'], ['Disputes', $stats['disputed_matches'], 'ti-alert-triangle', '#fef2f2', '#dc2626'], ] as [$l,$v,$ic,$bg,$c])
{{ number_format($v) }}
{{ $l }}
@endforeach
@foreach([ ['admin.players','ti-users','Kelola Pemain','Buka','#eff6ff','#1d4ed8'], ['admin.matches','ti-ball-football','Review Match','Buka','#f0fdf4','#16a34a'], ['admin.tournaments','ti-medal','Turnamen','Buka','#fef9c3','#ca8a04'], ] as [$route,$ic,$title,$btn,$bg,$c]) @endforeach
Skor Sengketa @if($disputedMatches->count() > 0) {{ $disputedMatches->count() }} @endif
Semua โ†’
@forelse($disputedMatches as $match)
{{ $match->host->username }} vs {{ $match->guest->username }}
Host: {{ $match->submitted_host_score_host }}-{{ $match->submitted_host_score_guest }} ยท Guest: {{ $match->submitted_guest_score_host }}-{{ $match->submitted_guest_score_guest }}
Resolve
@empty
โœ…
Tidak ada sengketa
@endforelse
Match Terbaru
@foreach($recentMatches as $match)
{{ ucfirst(str_replace('_',' ',$match->status)) }} {{ $match->host->username }} vs {{ $match->guest->username }} @if($match->status === 'completed') {{ $match->score_host }}-{{ $match->score_guest }} @endif
@endforeach