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

{{ __('auto.房间实时数据') }}

{{ __('auto.游戏在线人数:') }}{{$line}} {{ __('auto.大厅在线人数:暂无统计') }}
@foreach($list as $k=>$v) @endforeach
{{ __('auto.游戏房间名称') }} {{ __('auto.状态') }} {{ __('auto.当前房间人数') }} {{ __('auto.当天房间流水') }} {{ __('auto.当天房间输赢') }} {{ __('auto.当天房间税收') }} {{ __('auto.当天房间胜率') }} {{ __('auto.当天输赢人数') }} {{ __('auto.房间库存') }} {{ __('auto.设置') }}
{{$v->ServerName}} @if ($v->Nullity == 1) {{ __('auto.关闭') }} @else {{ __('auto.开启') }} @endif {{$v->game_count}} {{$v->flowing_water}} @if ($v->win_lose < 0) {{ __('auto.系统输') }} @elseif ($v->win_lose > 0) {{ __('auto.系统赢') }} @endif {{$v->win_lose}} {{$v->Revenue}} {{$v->winning_probability . '%'}} {{ __('auto.输') }}{{$v->LostUserCount}} / {{ __('auto.赢') }}{{$v->WinUserCount}} {{$v->stock}} {{-- @if ($role_id == 1)--}} @if ($v->Nullity == 1) @else @endif {{-- @endif--}}
@empty($list) {{ __('auto.暂无数据') }} @endempty
@endsection