@foreach ($cart->items as $item) @php $variation = $item->productVariation; $product = $variation->product; @endphp @endforeach
Item Price Quantity Total
@if ($product->images->count()) {{ $product->name }} @endif
{{ 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 }} {{ $item->quantity }} {{ config('app.currency') }} {{ $item->price }}