File: D:/HostingSpaces/Anvil/anvil-industries.com/resources/views/site/pages/segments/show.blade.php
@extends('site.master')
@section('title', $segment->translation->name . ' | '. $page->translation->meta_title)
@section('meta_description', $segment->translation->meta_description)
@section('content')
@include('site.partials.photoHeader', ['model' => $segment])
@include('site.partials.contentMenu', [
'content' => $segment->translation->description,
'overviewUrl' => $links->segments->route,
'menuModels' => $menuSegments,
'activeMenuModel' => $segment->id
])
<div class="reference-other-relative-models-binder">
<div class="grid-row">
@include('site.partials.referenceOfferCta')
@include('site.partials.otherRelativeModels', ['relativeModels' => $segment->nextSegments, 'typeModelUrl' => $links->segments->route])
</div>
</div>
@endsection