@foreach($totals["items"] as $item)
{{ $item["product_name"] ?? __('client.cart.product_fallback') }}
${{ number_format($item["price"] ?? 0, 2) }}
@endforeach
@if(($totals["discount"] ?? 0) > 0)
{{ __('client.cart.discount') }}-${{ number_format($totals["discount"], 2) }}
@endif
@if(($totals["tax"] ?? 0) > 0)
{{ __('client.cart.tax') }}${{ number_format($totals["tax"], 2) }}
@endif
{{ __('client.cart.total') }}
${{ number_format($totals["total"], 2) }}
{{ __('client.checkout.secure_checkout') }} — ${{ number_format($totals["total"], 2) }}