@extends('layouts.admin') @section('title', 'Tournament Management') @section('page-title', 'Tournament Management') @section('page-subtitle', 'Manage tournaments and competitive events') @section('content')

Tournament Management

Manage tournaments and competitions

Create Tournament
@forelse($tournaments as $tournament) @empty @endforelse
Tournament Game Host Entry Fee Participants Status Actions
{{ $tournament->title }}
{{ $tournament->type }}
{{ substr($tournament->game->name, 0, 1) }}
{{ $tournament->game->name }}
{{ $tournament->host->username }} ₦{{ number_format($tournament->entry_fee, 2) }} {{ $tournament->participants_count }} {{ ucfirst($tournament->status) }}

No tournaments found. Create your first tournament!

@if($tournaments->hasPages())
{{ $tournaments->links() }}
@endif
@endsection