Pesanan Anda
Keranjang Belanja
Pastikan pesanan kamu sudah sesuai sebelum lanjut.
Kembali
@if(count($items) > 0)
@endif
{{-- ── Items ── --}}
@php
$items = $items ?? [];
$subtotal = $subtotal ?? 0;
@endphp
@if(count($items) === 0)
@else
@foreach($items as $index => $item)
@php
$lineTotal = ((float) ($item['price'] ?? 0)) * ((int) ($item['quantity'] ?? 0));
$img = $item['image'] ?? null;
@endphp
@endforeach
@endif
{{-- ── Summary sidebar ── --}}
{{-- Image --}}
@if($img)
@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, ',', '.') }}