@if (count($cart_data) < 1)

{{ labels('front_messages.your_cart', 'Your cart') }} (0 {{ labels('front_messages.items', 'Items') }})

{{ labels('front_messages.no_products_in_cart', 'No Products in the Cart') }}

{{ labels('front_messages.continue_shopping', 'Continue shopping') }}
@else

{{ labels('front_messages.your_cart', 'Your cart') }} ({{ count($cart_data['cart_items']) }} {{ labels('front_messages.items', 'Items') }})

    @foreach ($cart_data['cart_items'] as $items) @php $pro_image = dynamic_image($items['image'],70); @endphp
  • {{ $items['name'] }}
    {{ $items['name'] }} @if ($items['cart_product_type'] != 'combo')
    {{ $items['product_variants'][0]['variant_values'] }}
    @endif
    @php $price = currentCurrencyPrice($items['price'], true); $special_price = isset($items['special_price']) && $items['special_price'] > 0 ? currentCurrencyPrice($items['special_price'], true) : $price; @endphp @if ($special_price !== $price) {{ $price }} @endif {{ $special_price }}
  • @endforeach
{{ labels('front_messages.total', 'Total') }}:{{ currentCurrencyPrice($cart_data['sub_total'], true) }}
{{ labels('front_messages.terms_and_conditions', 'Terms & conditions') }}
@endif