@extends('frontend.partials.layout') @section('content')

SHOPPING CART

Product

Price

Quantity

Total

@if(!empty($cart->items)) @foreach($cart->items as $key => $c)

{{$c['game']->name}}
Reservation date: {{$datetime[0]}}
Reservation time: {{$datetime[1]}}

$ {{$c['price']}}

4 tickets available

$ {{$c['sum_price']}}

@endforeach @else

Your cart is empty!

@endif

Promocode:

Giftcard:

Sub-total:
${{$cart->subtotal}}
Discounts:
$ {{$cart->discounts}}
Grand total:
$ {{$cart->total_price}}
@endsection