@extends('Frontend.Layouts.app') @section('page_title', $title) @section('content') @include('Frontend.Header.header') @php $heroTitle = $title; $desc = Str::limit($metaDescription, 140); @endphp @include('Frontend.Components.page-hero', ['title' => $heroTitle, 'desc' => $desc])
@if($images->count() > 0)
{{ $images[0]->alt_text ?? $title }}
@if($images->count() > 1)
{{ $images[1]->alt_text ?? $title }}
@endif
@endif
{{ $site->name }}

{{ $title }}

@forelse($paragraphs as $p)

{{ $p }}

@empty

{{ $metaDescription }}

@endforelse
@if($images->count() > 2)
@foreach($images->slice(2, 12) as $img)
@endforeach
@endif @include('Frontend.Footer.footer__common') @endsection