@extends('layouts.homepage.main') @section('content')
@foreach ($cartItems as $ci) @endforeach
Image Product Price Quantity Total Remove
cart-image {{ $ci->produk->nama_produk }} Rp{{ number_format($ci->produk->harga_produk, 0, ',', '.') }} Rp{{ number_format($ci->produk->harga_produk * $ci->quantity, 0, ',', '.') }}

Cart Totals


Total Rp {{ number_format($totalPrice, 0, ',', '.') }}
@endsection @section('script') @endsection