@extends('layouts.store') @section('body')
@if (count($carts) == 0)

No Item.

@else @foreach ($carts as $cart) @endforeach @endif
Product Quantity Price
@if ($cart->product->featured_image) @else @endif
{{ $cart->product->name }} {{--

Size: XL, Color: blue,
Brand: Gucci

--}}
@php $total = (int) $cart->product->price_range * $cart->qty; if ($total == 0) { echo 'Custom Price'; } else { echo 'Rp ' . number_format($total) . ''; } @endphp {{-- $315.20 each --}}
{{-- --}}
@if (count($carts) != 0) @endif Continue shopping
{{--

Free Delivery within 1-2 weeks

--}}
@endsection @section('script') @endsection