@props([
'hasWinnerStick' => true,
])
{{-- Columna Waterworks --}}
-
@php
$items = collect([
[
'title' => 'Pools',
'description' => 'Custom pools built for luxury living',
'image' => asset('images/menu/gallery/pools.jpg'),
'href' => route('gallery.show', 'pools'),
],
[
'title' => 'Spas',
'description' => 'Relaxing spa designs with style',
'image' => asset('images/menu/gallery/spas.jpg'),
'href' => route('gallery.show', 'spas'),
],
]);
@endphp
@foreach ($items as $item)
-
{{ $item['title'] }}
{{ $item['description'] }}
@endforeach
@if ($hasWinnerStick)
-
@endif
{{-- Columna Hardscape --}}
-
@php
$items = collect([
[
'title' => 'Driveways',
'description' => 'Durable and elegant driveway solutions',
'image' => asset('images/menu/gallery/driveways.jpg'),
'href' => route('gallery.show', 'driveways'),
],
[
'title' => 'Walkways',
'description' => 'Stylish paths to elevate curb appeal',
'image' => asset('images/menu/gallery/walkways.jpg'),
'href' => route('gallery.show', 'walkways'),
],
[
'title' => 'Patios',
'description' => 'Outdoor patios designed for comfort',
'image' => asset('images/menu/gallery/patios.jpg'),
'href' => route('gallery.show', 'patios'),
],
[
'title' => 'Outdoor Kitchens',
'description' => 'Built-in kitchens for outdoor entertaining',
'image' => asset('images/menu/gallery/outdoor-kitchens.jpg'),
'href' => route('gallery.show', 'outdoor-kitchens'),
],
]);
@endphp
@foreach ($items as $item)
-
{{ $item['title'] }}
{{ $item['description'] }}
@endforeach
{{-- Columna Features --}}
-
@php
$items = collect([
[
'title' => 'Fire Features',
'description' => 'Fire elements for cozy nights',
'image' => asset('images/menu/gallery/fire-features.jpg'),
'href' => route('gallery.show', 'fire-elements'),
],
[
'title' => 'Water Accents',
'description' => 'Elegant water features for ambiance',
'image' => asset('images/menu/gallery/water-features.jpg'),
'href' => route('gallery.show', 'water-accents'),
],
]);
@endphp
@foreach ($items as $item)
-
{{ $item['title'] }}
{{ $item['description'] }}
@endforeach
-
@php
$items = collect([
[
'title' => '3D Rendering',
'description' => 'Visualize your dream project first',
'image' => asset('images/menu/gallery/3d-rendering.jpg'),
'href' => route('gallery.show', 'renders'),
],
]);
@endphp
@foreach ($items as $item)
-
{{ $item['title'] }}
{{ $item['description'] }}
@endforeach