@extends('layout.index') @section('content') @if(count($carts)>0) Product Product Name Price Quantity Remove subtotal @csrf @foreach($carts as $cart) {{$cart->name}} £{{$cart->price}}.00 – + @php $total = $cart->price * $cart->quantity; @endphp £{{$total}}.00 @endforeach Update total £{{$total_price}}.00 proceed to checkout @else Ooops!! No product available in Cart !!! @endif @endsection @section('script') @endsection