@extends('layouts.app') @section('title', $page->meta_title) @section('description', $page->meta_description) @section('content')
{{-- Hero --}}

Ό,τι φαντάζεσαι,
το τυπώνουμε

@if($heroProducts->isNotEmpty())
@foreach($heroProducts as $product)
@if($product['image']) {{ $product['name'] }} @else {{ __('storefront.product.no_image') }} @endif {{-- Inside the link so it sits on the image's corner, not the full-width slide's. --}} @if ($product['soldOut'] ?? false) @endif @if ($product['soldOut'] ?? false) {{-- Sold: no quick add-to-cart/personalize, same as x-ui.product-card. --}} @elseif ($product['hasCustomFields'] ?? false) {{ __('storefront.product.personalize') }} @elseif ($product['variantId'] ?? null) {{ __('storefront.product.add_to_cart') }} @endif
{{ $product['name'] }} @if($product['price'] !== null) @endif
@endforeach
@else

Δεν βρέθηκαν προϊόντα.

@endif
{{-- Info / trivia --}}
@if(!empty($page->trivia_image))

100% σουρεάλ & 3d-printed

{!! Str::markdown($page->trivia_body) !!}
@if(!empty($page->trivia_body_image))
{{-- Δες τα προϊόντα --}} Διάβασε περισσότερα
{{-- Classics --}}

{{ $page->classics_title }}

Όλα τα προϊόντα
@forelse($classicsProducts->chunk(4) as $chunk)
@foreach($chunk as $product) @endforeach
@empty

Δεν βρέθηκαν προϊόντα.

@endforelse
@endsection