@extends('layout')
@section('content')

История игр

@forelse($games as $game)
с шансом {{ \App\Http\Controllers\GameController::_getUserChanceOfGame($game->winner, $game) }}% Победил:
@if($strpos_vip >= 1) {{ $game->winner->username }} @else {{ $game->winner->username }} @endif
Банк: {{ $game->price *100}} бонусов
Выигрыш засчитан
@if($game->status_prize == \App\Game::STATUS_PRIZE_WAIT_TO_SENT)
{{ $game->updated_at }}
@elseif($game->status_prize == \App\Game::STATUS_PRIZE_SEND)
{{ $game->updated_at }}
@else
{{ $game->updated_at }}
@endif
@empty
Пока что не было ни одной игры
@endforelse
@endsection