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

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

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

@foreach($statistics as $stat) @endforeach
{{ __('auto.推荐进入的游戏') }} {{ __('auto.注册人数') }} {{ __('auto.参与游戏人数') }} {{ __('auto.参游率') }} {{ __('auto.付费人数') }} {{ __('auto.付费率') }}
{{ $stat['game_name'] }} (ID: {{ $stat['game_id'] }}) {{ $stat['register_count'] }} {{ $stat['played_count'] }} @if($stat['register_count'] > 0) {{ $stat['participation_rate'] }}% @else - @endif {{ $stat['paid_count'] }} @if($stat['register_count'] > 0) {{ $stat['paid_rate'] }}% @else - @endif
@if(count($statistics) == 0)

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

@endif
@endsection