@extends('layouts.frontend') @section('content') @include('frontend.partials.inner-hero', [ 'title' => $wing['title'], 'eyebrow' => $wing['eyebrow'] ?? 'Internal Wing', 'summary' => $wing['summary'], 'image' => asset($wing['image']), 'breadcrumbs' => ['Wings & Museums' => url('/museums'), $wing['title'] => null], ])
{{ $wing['title'] }}
Overview

{{ $wing['title'] }}

{{ $wing['intro'] }}

{{ $wing['description'] }}

@include('frontend.partials.section-heading', ['eyebrow' => 'Related Information', 'title' => 'Wing Highlights'])
@foreach ($wing['features'] as $feature)
check_circle

{{ $feature }}

@endforeach
@include('frontend.partials.section-heading', ['eyebrow' => 'Gallery', 'title' => 'Visual References']) @include('frontend.partials.static-gallery', ['images' => $wing['gallery'], 'alt' => $wing['title'].' gallery image'])
@if (!empty($wing['related']))

Related Links

@foreach ($wing['related'] as $link) {{ $link['title'] }} east @endforeach
@endif @endsection