@extends('layouts.main') @section('content')
@component('components.panel', ['title' => 'Ridecount Statistics'])

Personal: {{ $personal }}

Total: {{ $total }}

@if(!empty($top10)) @php($i = 1) @foreach($top10 as $row) @php($row->uuid = str_replace('-', '', $row->uuid)) @php($username = \App\Cache\Cache::getUsername($row->uuid)) @if($username !== $row->uuid)

{{ $row->num }}# {{ $username }}: {{ $row->count }}

@endif @endforeach @else

No top 10 available for this attraction

@endif
@endcomponent
@endsection