You have {{ $cart->quantity }} {{ Str::plural('item', $cart->quantity) }} in your shopping bag.
| Item | Price | Quantity | Total | ||
|---|---|---|---|---|---|
|
{{ Str::limit($product->name, 15, '...') }}
{{ $variation->name }}
{{ $item->date }}
@if ($product->deleted_at or $variation->deleted_at)
Unavailable
@endif
{{ config('app.currency') }} {{ $item->unit_price }}
Total: {{ config('app.currency') }} {{ $item->price }}
|
@if ($product->images->count())
{{ Str::limit($product->name, 15, '...') }}
{{ $variation->name }}
{{ $item->date }}
@if ($product->deleted_at or $variation->deleted_at)
Unavailable
@endif
|
{{ config('app.currency') }} {{ $item->unit_price }} | {{ config('app.currency') }} {{ $item->price }} |