@extends('layouts.app') @section('title', $page->meta_title ?: $page->name) @section('description', $page->meta_description) @if($page->noindex ?? false) @push('seo') @endpush @endif @section('content') {{ $page->name }} {!! Str::markdown($page->content ?? '') !!} @endsection