| {{ __('admin.date') }} | {{ __('ui.team') }} | {{ __('ui.type') }} | {{ __('events.opponent') }} | {{ __('events.score') }} | @if (auth()->user()->isStaff()){{ __('admin.nav_players') }} | @endif{{ __('events.catering_short') }} | {{ __('events.timekeeper_short') }} |
|---|---|---|---|---|---|---|---|
| {{ $game->start_at->translatedFormat(__('ui.date_format_short')) }} | {{ $game->team->name }} | {{ $game->type === \App\Enums\EventType::HomeGame ? __('admin.home_short') : __('admin.away_short') }} | {{ $game->opponent ?? '–' }} | @if ($game->hasScore()) {{ $game->scoreDisplay() }} @else – @endif | @if (auth()->user()->isStaff()){{ $game->players_yes_count }} | @endif{{ $game->type->hasCatering() ? $game->caterings_yes_count : '–' }} | {{ $game->type->hasTimekeepers() ? $game->timekeepers_yes_count : '–' }} |
{{ __('admin.player_ranking_desc', ['count' => $totalGames]) }}
| # | {{ __('admin.nav_players') }} | {{ __('admin.position') }} | {{ __('admin.games_played') }} | {{ __('admin.player_goals') }} | {{ __('admin.participation_rate') }} | |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} |
@if ($entry->player->getAvatarUrl())
{{ $entry->player->getInitials() }}
@endif
{{ $entry->player->full_name }}
|
@if ($entry->primary_position) {{ $entry->primary_position->shortLabel() }} @else – @endif | {{ $entry->games_played }} | @if ($entry->total_goals > 0) {{ $entry->total_goals }} @else 0 @endif | {{ $entry->rate }}% |
|
{{ __('admin.stats_player_detail') }}
| {{ __('admin.date') }} | {{ __('events.opponent') }} | {{ __('events.score') }} | {{ __('events.stats_position') }} | {{ __('events.stats_goals') }} | {{ __('events.stats_shots') }} | {{ __('events.stats_goalkeeper') }} | {{ __('events.stats_note') }} |
|---|---|---|---|---|---|---|---|
| – |
{{ __('admin.parent_ranking_desc', ['catering' => $totalCateringEvents, 'timekeeper' => $totalTimekeeperEvents]) }}
| # | {{ __('admin.nav_users') }} | {{ __('events.catering_short') }} | {{ __('events.timekeeper_short') }} | {{ __('admin.total_contributions') }} | |
|---|---|---|---|---|---|
| {{ $index + 1 }} |
@if ($entry->user->getAvatarUrl())
{{ $entry->user->getInitials() }}
@endif
{{ $entry->user->name }}
|
@if ($entry->catering_count > 0) {{ $entry->catering_count }} @else 0 @endif | @if ($entry->timekeeper_count > 0) {{ $entry->timekeeper_count }} @else 0 @endif | {{ $entry->total }} |
|