@extends('layouts.default') @section('title', 'Upcoming Matches | Ticketing Portal') @section('content')
{{-- VIBRANT BACKGROUND WITH DARK OVERLAY --}}
@include('layouts.nav') {{-- ⚽ ENHANCED HERO HEADER SECTION ⚽ --}}

Matchday Adrenaline

Upcoming Matches! Secure your ticket now.

{{-- VIBRANT SEARCH FORM --}}
@if(session('success'))
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
@forelse ($upcomingMatches as $match) @if ($loop->first)
@endif {{-- VIBRANT MATCH CARD DESIGN --}}
{{-- Match Details --}}
{{ $match->home_team }} {{ $match->home_team }}
{{-- Stylized VS with a dynamic icon --}}
VS
{{ $match->away_team }} {{ $match->away_team }}
{{-- Time and Location Block --}}

{{ $match->match_date->format('h:i A') }}

{{ $match->match_date->format('l, F j, Y') }}

{{ $match->stadium }}

{{-- Pricing Details --}}

VIP Price:

SSP {{ $match->vip_amount }}

1st Class Price:

SSP {{ $match->{'1st_class_amount'} }}
{{-- DYNAMIC AND VIBRANT CTA BUTTON --}} @auth Buy Ticket Now @else Buy Ticket Now @endauth

Tickets now on sale at selected ticket centers.

See Centers
@if ($loop->last)
@endif @empty

No Matches Available

There are currently no upcoming matches scheduled. Please check back later for updates and prepare for the next season!

@endforelse
@endsection