@extends('layouts.app') @section('content')

🛒 Keranjang Belanja

@if($cart && count($cart) > 0) {{-- Tabel Keranjang --}}
@foreach($cart as $item) @endforeach
Produk Harga Jumlah Subtotal Aksi
{{ $item['name'] }}

{{ $item['name'] }}

Rp {{ number_format($item['price'], 0, ',', '.') }}
@csrf @method('PUT')
Rp {{ number_format($item['price'] * $item['quantity'], 0, ',', '.') }}
@csrf @method('DELETE')
{{-- Form Checkout --}}
@csrf {{-- Catatan Pesanan --}}

📝 Catatan Pesanan (Opsional)

{{-- Ringkasan Total & Tombol Checkout --}}

Total: Rp {{ number_format($total, 0, ',', '.') }}

@else {{-- Keranjang Kosong --}}

Keranjang Anda kosong.

🔎 Belanja Sekarang
@endif {{-- Toast Message --}} {{-- Modal Zoom Gambar --}}
{{-- Script Modal Zoom --}} @endsection