@extends('layout') @section('content')
игра # {{ $game->id }}
банк : {{ round($game->price*100) }} Б
Выиграно бонусов: {{ $winbonus }}
@if($game->icont == 'f') Победа команды: FIRE (ШАНС: {{ \App\Http\Controllers\TeamUpController::chanset1($game->id) }}%)
@else Победа команды: ICE (ШАНС: {{ \App\Http\Controllers\TeamUpController::chanset2($game->id) }}%)
@endif Общий Выигрыш: {{ $game->price *100}} Б

Игра завершилась!

честная игра

Число раунда: {{ $game->rand_number }}

{{ $game->updated_at }}
@if($g > 0)
  • Ваш выигрыш:
  • {{ $g*100 }} Б
@foreach($items as $i)
@if(!isset($i->img)) @if($i->rarity == 'rare')
 Arcana 
@endif @if($i->rarity == 'covert')
 Immortal 
@endif @if($i->rarity == 'classified')
 Legendary 
@endif @if($i->rarity == 'restricted')
 Mythical 
@endif @if($i->rarity == 'milspec')
 Rare 
@endif @if($i->rarity == 'uncommon')
 Uncommon 
@endif @if($i->rarity == NULL)
 Common 
@endif @endif
@if(!isset($i->img))
@else
@endif
{{ $i->price*100 }}
@endforeach
@endif
@foreach($bets as $bet) @include('includes.teamupbet') @endforeach

Игра началась!

честная игра

Хэш: {{ md5($game->rand_number) }}

{{ $game->created_at }}
@endsection