@extends('layouts.app') @section('title', $page->title) @section('meta_description', \App\Models\Setting::brandify($page->excerpt ?? \Illuminate\Support\Str::limit(strip_tags($page->body), 150))) @section('content')
@if($page->type === 'blog')

Blog • {{ ($page->published_at ?? $page->created_at)->format('d M Y') }}

@elseif($page->type === 'legal')

Legal

@endif

{{ $page->title }}

{!! \App\Support\CmsContent::toHtml(\App\Models\Setting::brandify($page->body)) !!}
@endsection