@extends('layouts.app')
@section('title', 'Matches')
@section('show-header', true)
@section('page-title', 'Tournaments')
@section('content')
{{-- Filters --}}
{{-- My Matches Link --}}
{{-- Tournament Cards --}}
@forelse($tournaments as $tournament)
@include('user.components.tournament-card', compact('tournament'))
@empty
No tournaments found
Try a different filter
@endforelse
{{ $tournaments->withQueryString()->links('user.components.pagination') }}
@endsection
@push('scripts')
@endpush