@foreach ($cart->items as $entry)
@php $shp_row_thumb = !empty($entry->item->thumb) ? "background-image:url('" . $entry->item->thumb . "');" : ''; @endphp
{{ $entry->item->item_name }}
@if ($entry->option)
{{ $entry->option->option_label }}
@endif
@if ($entry->blocked)
{{ $lang->shop_cart_blocked }}
@endif
{{ shop_money($entry->subtotal) }}
@endforeach