@extends('layouts.master')
@section('title', 'Leaderboard')
@section('content')
🏆 Leaderboard
⚽ Topscorers
@foreach($topScorers as $player)
-
{{ $player->name }}
{{ $player->goals->count() }}
@endforeach
🎯 Assists
@foreach($topAssists as $player)
-
{{ $player->name }}
{{ $player->assists->count() }}
@endforeach
🟨 Gele Kaarten
@foreach($mostYellowCards as $player)
@php $count = $player->cards->where('card_type', 'geel')->count(); @endphp
@if($count > 0)
-
{{ $player->name }}
{{ $count }}
@endif
@endforeach
🟥 Rode Kaarten
@foreach($mostRedCards as $player)
@php $count = $player->cards->where('card_type', 'rood')->count(); @endphp
@if($count > 0)
-
{{ $player->name }}
{{ $count }}
@endif
@endforeach
@endsection