@extends('user.layout.main') @section('title' , ' - Shop Cart') @section('content')
@if($errors->any())
@foreach($errors->all() as $error)
  • {{ $nomer++ }}. {{ $error }}
  • @endforeach
    @endif
    @csrf
    @foreach ($cart as $item) @endforeach
    Product Quantity Total Action
    img
    {{ $item->product->nama }} {{ $item->product->deskripsi }}
    Rp. {{ number_format($item->jumlah * $item->product->harga) }}

    Cart Totals

    Sub total: Rp. {{ number_format($sum_cart) }}
    Shipping: free
    Total: Rp.{{ number_format($sum_cart) }}
    {{-- --}} @csrf {{-- --}}
    @endsection @section('script') @endsection