@extends('includes.master') @section('content')
@if(Session::has('message'))
× {{ Session::get('message') }}
@endif
@forelse($carts as $cart) {{csrf_field()}} @if(Session::has('uniqueid')) @else @endif @empty @endforelse
Product Name Unit Price Qty Subtotal
{{--woman clothing--}} {{$cart->title}} {{--
S / Dirty Pink
--}} {{--
Zigzag Clothing
--}}
${{\App\Product::findOrFail($cart->product)->price}}
 
{{$cart->quantity}}
 
${{$cart->cost}}

Your Cart is Empty.

Total ${{round($sum,2)}}
Proceed To Checkout Continue Shopping
@stop @section('footer') @stop