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

Shopping cart

{{--

Buy $183 more to get Free Shipping

--}} @if ($carts->count() == 0) @else @foreach ($carts as $key => $cart) @endforeach @endif
Product Quantity Total
Your cart is empty

Looks like you haven't added any items to your cart yet.

Start Shopping
{{ $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')
@if ($carts->count() > 0) @endif
{{--

Trending products

--}} {{--
--}}
@include('layouts.partials/footer2') @endsection @section('scripts') @endsection