@extends('layouts.app') @section('title', 'Matches') @section('show-header', true) @section('page-title', 'Tournaments') @section('content') {{-- Filters --}}
@foreach($games as $game) @endforeach
{{-- My Matches Link --}}
My Matches
{{-- 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