@extends('layouts.default') @section('title', 'Upcoming Matches | Ticketing Portal') @section('content')
@include('layouts.nav')

Upcoming Matches

Buy official tickets for all SSFF League, Bright Stars, and domestic cup matches.! 🎟️⚽

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@forelse ($upcomingMatches as $match) @if ($loop->first)
@endif
ON SALE
{{ $match->home_team }}
{{ $match->home_team }} Home
VS
{{ $match->away_team }}
{{ $match->away_team }} Away

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

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

{{ $match->stadium }}

VIP Tickets
SSP {{ $match->vip_amount }}
1st Class Tickets
SSP {{ $match->{'1st_class_amount'} }}
@auth Buy Tickets Now @else Buy Tickets Now @endauth

Available at selected ticket centers

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

No Matches Available

There are currently no upcoming matches scheduled. Check back soon for exciting new fixtures! ⚽

@endforelse
@endsection