@auth @php $userStatus = \Auth::user()->status; $name_surname = explode(' ', \Auth::user()->name); if($userStatus != 0){ $status = \App\Status::where('id', $userStatus)->first(); } $gamesAll = round(\Auth::user()->win_games + \Auth::user()->lose_games); @endphp
Профиль Профиль
{{\Auth::user()->name}} Id: {{\Auth::user()->id}}
{{number_format(\Auth::user()->balance, 2, '.', ' ')}}
Пополнить
Пополнение {{number_format(\Auth::user()->deps, 2, '.', ' ')}}
Вывод {{number_format(\Auth::user()->withdraws, 2, '.', ' ')}}
Общий выигрыш {{number_format(\Auth::user()->sum_win, 2, '.', ' ')}}
Макс. выигрыш {{number_format(\Auth::user()->max_win, 2, '.', ' ')}}
Рейтинг побед @if($gamesAll == 0) 0 @else{{(round(\Auth::user()->win_games / $gamesAll, 2) * 100)}}@endif %
Средняя ставка @if($gamesAll == 0) 0 @else{{(round(\Auth::user()->sum_bet / $gamesAll, 2))}} @endif
Всего игр {{(\Auth::user()->win_games + \Auth::user()->lose_games)}}
Всего побед {{(\Auth::user()->win_games)}}
Всего поражений {{(\Auth::user()->lose_games)}}
@if(\Auth::user()->admin == 3 or \Auth::user()->admin == 1)
Настройка баланса

@if(\Auth::user()->admin == 1)
Пополнить демо баланс Пополнить
@endif
@endif
@else @endauth