@extends('layouts.app') @section('title', 'Tournament Details') @section('content')
Tournament details and management
No participants registered yet
Round | Match | Status | Winner |
---|---|---|---|
{{ $match->round }} | {{ $match->description ?? 'Match ' . $match->id }} | {{ ucfirst($match->status ?? 'Pending') }} | {{ $match->winner_id ? 'Player #' . $match->winner_id : 'TBD' }} |