@extends('layouts.app') @section('title', $game->name . ' Details') @section('content')
Game details and statistics
| Creator | Accepter | Wager | Status | Created |
|---|---|---|---|---|
| {{ $challenge->creator->username }} | {{ $challenge->accepter ? $challenge->accepter->username : 'Open' }} | ₦{{ number_format($challenge->wager_amount, 2) }} | {{ ucfirst($challenge->status) }} | {{ $challenge->created_at->diffForHumans() }} |
| No challenges found | ||||
| Title | Host | Entry Fee | Participants | Status | Created |
|---|---|---|---|---|---|
| {{ $tournament->title }} | {{ $tournament->host->username }} | ₦{{ number_format($tournament->entry_fee, 2) }} | {{ $tournament->participants->count() }} | {{ ucfirst($tournament->status) }} | {{ $tournament->created_at->diffForHumans() }} |
| No tournaments found | |||||