@extends('panel.layouts.base')
@section('title',__('panel/general/rating.index.title'))
@section('seo_description', __('panel/general/rating.index.description'))
{{----}}
@section('content.main')
@php
$svg = '';
@endphp
@slot('pvp')
@include('panel.general.rating.pvp')
@endslot
@slot('pk')
@include('panel.general.rating.pk')
@endslot
@slot('level')
@include('panel.general.rating.level')
@endslot
@slot('clan')
@include('panel.general.rating.clan')
@endslot
@slot('castle')
@include('panel.general.rating.castle')
@endslot
@slot('wedding')
@include('panel.general.rating.wedding')
@endslot
@slot('bosses')
@include('panel.general.rating.bosses')
@endslot
@endsection
@section('content.top')
@if($topPvp->isNotEmpty())
{{ __('panel/general/rating.index.0') }}
{{ $topPvp['name'] }}
{{ formatNumber($topPvp['pvp']) }}
@endif
@if($topPk->isNotEmpty())
{{ __('panel/general/rating.index.1') }}
{{ $topPk['name'] }}
{{ formatNumber($topPk['pk']) }}
@endif
@if(count($topClan))
{{ __('panel/general/rating.index.2') }}
{{ $topClan['name'] }}
{{ formatNumber($topClan['reputation_score']) }}
@endif
@endsection