@extends('layouts.store') @section('title', 'My Cart') @section('content')
Checkout

My Cart

@if (session('status'))

{{ session('status') }}

@endif
@forelse ($items as $item) @empty @endforelse
Product Price Qty Total Action
{{ $item->product->name }} @if ($item->variant) {{ $item->variant->label() }} @endif {{ \App\Models\SiteSetting::formatPrice($item->unitPrice()) }}
@csrf @method('PATCH')
{{ \App\Models\SiteSetting::formatPrice($item->unitPrice() * $item->quantity) }}
@csrf @method('DELETE')
Your cart is empty.
Subtotal {{ $subtotalDisplay }}
@if ($items->isNotEmpty())
Proceed to checkout
@endif
@endsection