@extends('layouts.app')
@section('content')
Your Cart
@foreach($cart as $key => $item)
-
Ground: {{ $item['ground_name'] }}
Date: {{ $item['date'] }}
Time: {{ $item['start_time'] }} - {{ $item['end_time'] }}
Price: ₹{{ $item['price'] }} /hr
@endforeach
@if(count($cart) > 0)
Proceed to Checkout
@else
Your cart is empty.
@endif
@endsection
@section('scripts')
@endsection