@php
/**
* @name Pagina prodotto
* @version 1.0.0
*/
@endphp
@extends('app')
@section('content')
@php
$gallery_layout = $product->get_gallery_layout();
$fixed = '';
if($gallery_layout == 'vertical_slider'){
$fixed = ' content-fixed';
}
$empty_gallery = '';
if(!$product->have_gallery()){
$empty_gallery = ' single-product-no-gallery';
}
@endphp
@if($product->have_gallery())
@get_template_part('page.product.parts.gallery', null, ['product' => $product])
@endif
@get_template_part('page.product.parts.details', null, ['product' => $product])
@endsection