@props([
'hasBooking' => true,
])
{{-- Column Pools --}}
-
@php
$poolItems = collect([
[
'title' => 'Pool Builder',
'description' => 'High quality custom pool construction',
'image' => asset('images/menu/services/pool-builder.jpg'),
'href' => route('services.pools.builder'),
],
[
'title' => 'Pool Design',
'description' => 'Unique designs adapted to your space and style',
'image' => asset('images/menu/services/pool-design.jpg'),
'href' => route('services.pools.design'),
],
[
'title' => 'Pool Remodeling',
'description' => 'Renovation and modernization of existing swimming pools',
'image' => asset('images/menu/services/pool-remodeling.jpg'),
'href' => route('services.pools.remodeling'),
],
[
'title' => 'Commercial Pools',
'description' => 'Solutions for commercial and residential projects',
'image' => asset('images/menu/services/commercial-pools.jpg'),
'href' => route('services.pools.commercial'),
],
[
'title' => 'Pool Decks',
'description' => 'Customized pool decks and pool areas',
'image' => asset('images/menu/services/pool-decks.jpg'),
'href' => route('services.pools.decks'),
],
]);
@endphp
@foreach ($poolItems as $item)
-
{{ $item['title'] }}
{{ $item['description'] }}
@endforeach
{{-- Column Pavers --}}
-
@php
$paverItems = collect([
[
'title' => 'Brick Pavers',
'description' => 'Durable and elegant brick pavers',
'image' => asset('images/menu/services/brick-pavers.jpg'),
'href' => route('services.pavers.brick'),
],
[
'title' => 'Patios & Walkways',
'description' => 'Functional and attractive outdoor spaces',
'image' => asset('images/menu/services/patio-walkways.jpg'),
'href' => route('services.pavers.patios-walkways'),
],
[
'title' => 'Paver Driveways',
'description' => 'Sturdy and stylish vehicle entrances',
'image' => asset('images/menu/services/paver-driveways.jpg'),
'href' => route('services.pavers.driveways'),
],
[
'title' => 'Porcelain Pavers',
'description' => 'High quality porcelain floor tiles',
'image' => asset('images/menu/services/porcelain-paver.jpg'),
'href' => route('services.pavers.porcelain'),
],
[
'title' => 'Paver Sealing & Repair',
'description' => 'Professional maintenance and repair about repairing damaged bricks',
'image' => asset('images/menu/services/paver-sealing-repair.jpg'),
'href' => route('services.pavers.sealing-repair'),
],
]);
@endphp
@foreach ($paverItems as $item)
-
{{ $item['title'] }}
{{ $item['description'] }}
@endforeach
{{-- Column Features --}}
-
@php
$featureItems = collect([
[
'title' => 'Outdoor Living',
'description' => 'Outdoor spaces to enjoy all year round',
'image' => asset('images/menu/services/outdoor-living.jpg'),
'href' => route('services.features.outdoor-living'),
],
[
'title' => 'Retaining Walls',
'description' => 'Functional and decorative retaining walls',
'image' => asset('images/menu/services/retaining-walls.jpg'),
'href' => route('services.features.retaining-walls'),
],
]);
@endphp
@foreach ($featureItems as $item)
-
{{ $item['title'] }}
{{ $item['description'] }}
@endforeach
@if ($hasBooking)
-
@endif
{{ $slot }}