@version(2) @load('css/shop.css')
@include('_currency')

{{ $lang->shop_cart }}

@if (empty($cart->items))

{{ $lang->shop_cart_empty }}

@else
@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
@endif