@extends('layouts.store')
@section('title', 'My Cart')
@section('content')
My Cart
{{ session('status') }}
@endif| Product | Price | Qty | Total | Action |
|---|---|---|---|---|
| {{ $item->product->name }} @if ($item->variant) {{ $item->variant->label() }} @endif | {{ \App\Models\SiteSetting::formatPrice($item->unitPrice()) }} | {{ \App\Models\SiteSetting::formatPrice($item->unitPrice() * $item->quantity) }} | ||
| Your cart is empty. | ||||