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

Upcoming Matches

{{-- add search form --}}
@if(session('success'))
{{ session('success') }}
@endif
@if(session('error'))
{{ session('error') }}
@endif
@forelse ($upcomingMatches as $match) @if ($loop->first)
@endif
{{ $match->home_team }} {{ $match->home_team }}
VS
{{ $match->away_team }} {{ $match->away_team }}

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

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

{{ $match->stadium }}

SSP {{ $match->vip_amount }} VIP Price

SSP {{ $match->{'1st_class_amount'} }} 1st Class Price

@auth Buy Ticket @else Buy Ticket @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.

@endforelse
@endsection