@extends('default.layouts.app') @section('title', 'Ralph Lauren Gift Guide | Holiday 2025') @section('content')
@if($hero && $hero->video) @elseif($hero && $hero->image) {{ $hero->title }} @endif
Polo Ralph Lauren

{{ $hero->title ?? 'The Gift Guide' }}

{{ $hero->subtitle ?? 'Timeless Presents for Memorable Moments' }}

@if($hero && $hero->button_text) {{ $hero->button_text }} @endif
@foreach($shopGrid as $shop)
{{ $shop->title }}

{{ $shop->title }}

{{ $shop->description }}

@if($shop->button_text) {{ $shop->button_text }} @endif
@endforeach
@php $herHero = $sections['section_hero']->where('slug', 'gifts-for-her-hero')->first(); @endphp @if($herHero)
{{ $herHero->title }}

{{ $herHero->title }}

{{ $herHero->subtitle }}

@php $herItems = $sections['section_item']->whereIn('slug', ['polo-bear-shop-women', 'luxury-gifts', 'our-favorites-her']); @endphp
@php $largeItem = $herItems->where('slug', 'polo-bear-shop-women')->first(); @endphp @if($largeItem)
{{ $largeItem->title }}

{{ $largeItem->title }}

@if($largeItem->button_text) {{ $largeItem->button_text }} @endif
@endif
@foreach($herItems->whereNotIn('slug', ['polo-bear-shop-women']) as $item)
{{ $item->title }}

{{ $item->title }}

@if($item->button_text) {{ $item->button_text }} @endif
@endforeach
@endif @php $himHero = $sections['section_hero']->where('slug', 'gifts-for-him-hero')->first(); @endphp @if($himHero)
{{ $himHero->title }}

{{ $himHero->title }}

{{ $himHero->subtitle }}

@php $himItems = $sections['section_item']->whereIn('slug', ['our-favorites-him', 'polo-bear-shop-men', 'custom-shop']); @endphp
@php $largeItem = $himItems->where('slug', 'our-favorites-him')->first(); @endphp @if($largeItem)
{{ $largeItem->title }}

{{ $largeItem->title }}

@if($largeItem->button_text) {{ $largeItem->button_text }} @endif
@endif
@foreach($himItems->whereNotIn('slug', ['our-favorites-him']) as $item)
{{ $item->title }}

{{ $item->title }}

@if($item->button_text) {{ $item->button_text }} @endif
@endforeach
@endif @php $kidsHero = $sections['section_hero']->where('slug', 'gifts-for-kids-hero')->first(); @endphp @if($kidsHero)
{{ $kidsHero->title }}

{{ $kidsHero->title }}

{{ $kidsHero->subtitle }}

@endif @php $homeHero = $sections['section_hero']->where('slug', 'for-the-home-hero')->first(); @endphp @if($homeHero)
{{ $homeHero->title }}

{{ $homeHero->title }}

{{ $homeHero->subtitle }}

@endif @endsection