@extends('default.layouts.app') @section('title', 'Home - Heritage Lux') @section('content') @if($heroBanner)
{{ $heroBanner->title }}
{{ $heroBanner->subtitle ?? 'Ralph Lauren' }}

{{ $heroBanner->title }}

@endif @if($promos->count() > 0)
@foreach($promos as $promo)
{{ $promo->title }}
{{ $promo->subtitle }}

{{ $promo->title }}

@if($promo->description) @endif @if($promo->links && count($promo->links) > 0)
@foreach($promo->links as $link) {{ $link['text'] }} @endforeach
@elseif($promo->button_text) @endif
@endforeach
@endif @if($fullBanner)
{{ $fullBanner->title }}
{{ $fullBanner->subtitle }}

{{ $fullBanner->title }}

{{ $fullBanner->description }}

@endif @if($carousel)
{{ $carousel->subtitle }}

{{ $carousel->title }}

{{ $carousel->description }}

@endif @endsection