@extends('layouts.landing', ['title' => 'Checkout v.1 - Shopping Cart']) @section('content')

Shopping cart

{{--

Buy $183 more to get Free Shipping

--}} @foreach ($carts as $key => $cart) @endforeach
Product Price Quantity Total
{{ $cart->name ?? 'Product' }}
{{ $cart->itemVariant->display_name ?? $cart->itemVariant->description ?? 'Product Name' }}
{{--
  • Color: {{ $cart->color ?? 'N/A' }}
  • Model: {{ $cart->model ?? 'N/A' }}
  • Price: ${{ number_format($cart->itemReference->display_price ?? 0, 2) }}
--}}
Rp {{ number_format($cart->itemVariant->display_price ?? 0, 0,",",".") }}
Rp {{ number_format(($cart->display_price ?? 0) * ($cart->qty ?? 1), 0,",",".") }}
@csrf @method('DELETE')

Trending products

@include('layouts.partials/footer') @endsection @section('scripts') @endsection