@props([ 'subtotal' => 0, 'total' => 0, 'savings' => 0, 'tax' => 0, 'showEdit' => false, 'editUrl' => null, 'showItems' => false, 'items' => [], ])
{{ __('cart_summary.title') }}
@if ($showEdit && $editUrl) @endif
@if ($showItems && count($items) > 0) @foreach ($items->take(3) as $item)
{{ $item->name ?? 'Product' }}
@endforeach
@endif
{{ __('cart_summary.estimated_total') }}: Rp {{ number_format($total, 0, ',', '.') }}