@extends('user.layout.main') @section('title' , ' - Shop Cart') @section('content') Shop Cart Home Shop Shop Cart @if($errors->any()) @foreach($errors->all() as $error) {{ $nomer++ }}. {{ $error }} @endforeach @endif @csrf Product Quantity Total Action @foreach ($cart as $item) {{ $item->product->nama }} {{ $item->product->deskripsi }} Rp. {{ number_format($item->jumlah * $item->product->harga) }} Delete @endforeach Update Cart Cart Totals Sub total: Rp. {{ number_format($sum_cart) }} Shipping: free Total: Rp.{{ number_format($sum_cart) }} {{-- --}} @csrf Proceed to Checkout {{-- --}} @endsection @section('script') @endsection