@php
/**
* @name Pagina carrello\Dettagli prodotto
* @version 1.0.0
*/
@endphp
{!! $product->get_cart_images_html() !!}
{!! $product->get_catalog_title_html() !!}
@if ($product->is_simple())
@get_template_part('page.cart.parts.product', 'simple', ['product' => $product])
@endif
@if ($product->is_variable())
@get_template_part('page.cart.parts.product', 'variable', ['product' => $product])
@endif
{!! $product->get_price_html() !!}
{!! $product->get_quantity() !!} x {!! $product->get_price_html() !!}
{!! $product->get_amount_html() !!}
@if(call_setting('settings.cart.product_quick_view') && $product->is_visible())
@endif
{{--
{!! $product->get_quickcart_images_html() !!}
{!! $product->get_catalog_title_html() !!}
@if ($product->is_simple())
@get_template_part('page.cart.quick-cart.product', 'simple', ['product' => $product])
@endif
@if ($product->is_variable())
@get_template_part('page.cart.quick-cart.product', 'variable', ['product' => $product])
@endif
--}}