@extends('base.base') @section('base')

{{ __('auto.游戏参与情况统计') }}

{{ __('auto.注册时间:') }} {{ __('auto.至') }}    {{ __('auto.清空') }}

@foreach($statistics as $stat) @endforeach
{{ __('auto.GameID尾号') }} {{ __('auto.尾号对应的游戏') }} {{ __('auto.注册人数') }} {{ __('auto.参与游戏人数') }} {{ __('auto.参游率') }}
{{ $stat['last_digit'] }} {{ $stat['game_name'] }} {{ $stat['register_count'] }} {{ $stat['played_count'] }} @if($stat['register_count'] > 0) {{ $stat['participation_rate'] }}% @else - @endif
@if(count($statistics) == 0)

{{ __('auto.暂无统计数据,请选择其他时间范围。') }}

@endif
@endsection