@extends('includes.master') @section('content') Home My Cart @if(Session::has('message')) × {{ Session::get('message') }} @endif Product Name Unit Price Qty Subtotal @forelse($carts as $cart) {{--woman clothing--}} {{$cart->title}} {{--S / Dirty Pink--}} {{--Zigzag Clothing--}} ${{\App\Product::findOrFail($cart->product)->price}} {{$cart->quantity}} ${{$cart->cost}} {{csrf_field()}} @if(Session::has('uniqueid')) @else @endif @empty Your Cart is Empty. @endforelse Total ${{round($sum,2)}} Proceed To Checkout Continue Shopping @stop @section('footer') @stop