{{-- @dd($cart_data) --}}
@if (count($cart_data) >= 1 || count($save_for_later) >= 1)
@if (count($cart_data) >= 1)
@php
$is_save_later_hide = 0;
$is_remove_from_cart = 0;
$for_checkout = 0;
@endphp
@foreach ($cart_data['cart_items'] as $cartItem)
@endforeach
@endif
@if (count($save_for_later) >= 1)
@foreach ($save_for_later['cart_items'] as $item)
@php
$product_img = dynamic_image($item['image'], 400);
@endphp
{{ currentCurrencyPrice($item['price'], true) }}{{ currentCurrencyPrice($item['special_price'], true) }}
@endforeach
@endif
@php
$store_settings = getStoreSettings();
@endphp
{{--
--}}
@if (!empty($related_product['product']))
@foreach ($related_product['product'] as $details)
@php
$component = getProductDisplayComponent($store_settings);
@endphp
@endforeach
@endif
@else
@php
$title =
'
' .
labels('front_messages.sorry', 'SORRY ') .
'' .
labels('front_messages.cart_is_currently_empty', 'Cart is currently empty');
@endphp
@endif