@extends('layouts.site') @section('title', $page->meta_title ?: $page->title) @section('meta_description', $page->meta_description ?? '') @section('content')
@if(filled($page->intro))

{{ $page->intro }}

@endif @foreach($page->sections as $section)
@if(filled($section->heading))

{{ $section->heading }}

@endif @if(filled($section->body))
{!! $section->body !!}
@endif
@endforeach
@foreach($testimonials as $t)
“{{ $t->quote }}”
{{ $t->author_name ?? 'Anonymous' }} · {{ ucfirst(str_replace('_', ' ', $t->source_type)) }}
@endforeach
@endsection