@extends('frontend.layouts.layouts') @section('content')
Flowbite Logo

Cart

Product

@foreach ($cart as $productId => $item) @endforeach
Select Delete Image Name Variant Price Quantity Total
@csrf
@csrf @method('DELETE')
Product Image
{{ $item['name'] }} {{ $item['variant'] }} {{ number_format($item['price'], 2) }}
@csrf @method('PATCH')
{{ number_format($item['quantity'] * $item['price'], 2) }}

CART TOTALS


SUBTOTAL

{{--

SHIPPING

--}}

{{ number_format($subtotal, 2) }}

{{--

CHANGE ADDRESS

--}}

TOTAL

{{ number_format($total, 2) }}

@endsection