@if (isset($date) && $date)
@foreach ($all_products as $products)
@foreach($products as $category)
@if($category->extra->place == 1)
@foreach($category->Products as $product)
Event->start_time) && $product->Event->start_time)
data-start-time="{{ $product->Event->start_time }}"
@endif
@if ($product->event_id)
data-event="{{ $product->event_id }}"
@endif
@if ($product->capacity)
data-capacity="{{ $product->capacity }}"
@endif
data-virtual-tour="{{
(
isset($product->virtual_tour_embed) && $product->virtual_tour_embed ?
$product->virtual_tour_embed :
''
)
}}"
data-virtual-tour-link="{{
(
isset($product->virtual_tour_link) && $product->virtual_tour_link ?
$product->virtual_tour_link :
''
)
}}"
data-virtual-tour-link-text="{{ __('View virtual tour') }}"
>
{{ $product->name }}
{!! $product->description !!}
@if (isset($settings->content->payment_type_label_total) && $settings->content->payment_type_label_total)
{{ amount($product->price, ['to' => $currency->id]) }}
{{ $settings->content->payment_type_label_total }}
@endif
@if ($product->price && $product->price > 0)
{{ amount($product->price, ['to' => $currency->id]) }}
@endif
@if (
isset($settings->content->show_events_map_selector) &&
$settings->content->show_events_map_selector &&
isset($product->Event->id) && $product->Event->id
)
{{ $product->Event->name }}
@endif
@endforeach
@endif
@endforeach
@endforeach
@endif