@extends('template.layout') @section('title', 'Highscores') @section('submenuItem', 'highscores') @section('content')
@csrf
Highscores Filter
@if(config('multi_world.enabled')) @endif
World:
Vocation:
Category:

HighscoresLast Update: @if(\Carbon\Carbon::now()->diffInMinutes($lastUpdatedTime) <= 1) less than a minute ago @else {{ \Carbon\Carbon::now()->diffInMinutes($lastUpdatedTime) }} minutes ago @endif
@if($config['showLevel']) @endif @foreach($players as $key => $player) @php $rowClass = $loop->index % 2 == 0 ? 'Even' : 'Odd'; @endphp @if($config['showLevel']) @endif @endforeach
Rank Name VocationLevel{{ $config['rowName'] }}
{{ $key + 1 }} {{ $player->name }} {{ \App\Utils\Vocation::getNameByVocationId($player->vocation) }}{{ $player->level }}{{ number_format($player->skill) }}
@endsection