Keranjang Belanja

Kelola produk pilihanmu dan pilih mana yang siap di checkout.

@if (! $cart || $cart->items->isEmpty())
Keranjangmu masih kosong. Yuk eksplor katalog produk kami!
@else
Pilih Produk Jumlah Total
@foreach ($cart->items as $item)
{{ $item->product->name }}

{{ $item->product->name }}

Rp{{ number_format($item->unit_price, 0, ',', '.') }} · Stok {{ $item->product->stock }}

@csrf @method('PATCH')
@csrf @method('DELETE')

Rp{{ number_format($item->subtotal, 0, ',', '.') }}

@endforeach
@csrf

Total produk terpilih

Rp{{ number_format($cart->items->where('is_selected', true)->sum('subtotal'), 0, ',', '.') }}

Checkout
@endif