@extends('layout.index') @section('content')
@if(count($carts)>0)
@csrf @foreach($carts as $cart) @php $total = $cart->price * $cart->quantity; @endphp @endforeach
Product Product Name Price Quantity Remove subtotal
image_not_found

{{$cart->name}}

£{{$cart->price}}.00
£{{$total}}.00
@else
empty-img

Ooops!! No product available in Cart !!!

@endif
@endsection @section('script') @endsection