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

{{ $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
{{ number_format($entry->subtotal) }}원
@endforeach
@endif