@php $reviews = [ [ 'quote' => 'My paver driveway looks incredible. They finished on time, cleaned up completely, and the quality is beyond what I expected at this price.', 'initials' => 'MR', 'name' => 'Michael R.', 'meta' => 'Boca Raton — Paver Driveway', ], [ 'quote' => 'We had our pool deck done in travertine. The team was professional, respectful of our property, and the result is absolutely gorgeous.', 'initials' => 'JT', 'name' => 'Jennifer T.', 'meta' => 'Boynton Beach — Pool Deck', ], [ 'quote' => 'They repaired and sealed our 10-year-old pavers and they look brand new. Fast, affordable, and no pressure. Will use again for the patio.', 'initials' => 'AP', 'name' => 'Ana P.', 'meta' => 'Delray Beach — Repair & Sealing', ], ]; // Swiper deshabilita el loop si hay < slidesPerView (3) slides: duplicamos el // set para que el período sea > 3 y nunca se vea una reseña repetida a la vez. $slides = array_merge($reviews, $reviews); @endphp {{-- Real Reviews: carrusel Swiper (swipe + autoplay). Estrellas doradas, avatar cyan, botón cálido a Google. --}}
@foreach ($slides as $review)
@for ($i = 0; $i < 5; $i++) @endfor
"{{ $review['quote'] }}"
{{ $review['initials'] }} {{ $review['name'] }} {{ $review['meta'] }}
@endforeach