@extends('layouts.app') @section('title', 'Shopping Cart') @section('content')
| Product | Price | Quantity | Subtotal | |
|---|---|---|---|---|
|
@if($item->product->primaryImage)
{{ substr($item->product->name, 0, 1) }}
@endif
{{ $item->product->name }}
{{ $item->product->vendor->name }} @if($item->variant){{ $item->variant->name }}: {{ $item->variant->value }} @endif |
{{ price($item->variant?->price ?? $item->product->price) }} | {{ price(($item->variant?->price ?? $item->product->price) * $item->quantity) }} |