@extends('layouts.admin') @section('title', 'Tournaments') @section('page-title', 'Tournament Management') @section('content') {{-- Filters + Create --}}
+ New Tournament
@forelse($tournaments as $tournament) @empty @endforelse
Tournament Game Players Prize Scheduled Status Actions

{{ $tournament->title }}

{{ $tournament->match_type }}

{{ $tournament->game->name }} {{ $tournament->registered_players }}/{{ $tournament->max_players }} ৳{{ number_format($tournament->total_prize) }} {{ $tournament->scheduled_at->format('d M Y\ng:ia') }} {{ ucfirst($tournament->status) }}
Players @if($tournament->status === 'ongoing' || $tournament->status === 'result') Results @endif Edit CSV
@csrf @method('DELETE')
No tournaments found.
{{ $tournaments->withQueryString()->links() }}
@endsection