@include('partials.navbar')
{{-- ── Header ── --}}

Pesanan Anda

Keranjang Belanja

Pastikan pesanan kamu sudah sesuai sebelum lanjut.

{{-- ── Action bar ── --}}
Kembali @if(count($items) > 0) @endif
{{-- ── Items ── --}}
@php $items = $items ?? []; $subtotal = $subtotal ?? 0; @endphp @if(count($items) === 0)

Keranjang Kamu Masih Kosong

Yuk, jelajahi paket lezat kami dan temukan favoritmu!

@else @foreach($items as $index => $item) @php $lineTotal = ((float) ($item['price'] ?? 0)) * ((int) ($item['quantity'] ?? 0)); $img = $item['image'] ?? null; @endphp
{{-- Image --}}
@if($img) {{ $item['name'] }} @else
@endif
{{-- Details --}}
{{ strtoupper($item['type'] ?? '') }}

{{ $item['name'] }}

Rp {{ number_format((float) ($item['price'] ?? 0), 0, ',', '.') }}

{{-- Qty --}}
{{-- Line total --}}

Subtotal

Rp {{ number_format((float) $lineTotal, 0, ',', '.') }}

@endforeach @endif
{{-- ── Summary sidebar ── --}}