@extends('layouts/layout') @section('content')
Round | User | Betting Amount | Winning Amount | Winning Number | Transaction Fees |
---|---|---|---|---|---|
{{ $winner->round->block_no }} | {{ $winner->user->name }} | {{ $winner->total_bets }} | {{ $winner->winning_amount }} | {{ $winner->winning_number }} | {{ $winner->transaction_fees }} |
There are no winners yet. |
Round | Betting Amount | Number | User | Status |
---|---|---|---|---|
{{ $bet->round->block_no }} | {{ $bet->bet_amount }} | {{ $bet->bet_number }} | {{ $bet->user->name }} | @if ($bet->status == \App\Models\Bet::STATUS_PENDING) Pending @elseif ($bet->status == \App\Models\Bet::STATUS_WON) Won @elseif ($bet->status == \App\Models\Bet::STATUS_LOST) Lost @endif |
There are no bets yet. |