@extends('components.layout') @section('body')
@include('partials.page-header') @if (isset($page->quick_exit_button) && $page->quick_exit_button === true)
Quick Exit
@endif
Last updated {{ $page->updated_at->format('j F Y') }}
{{ $page->title }}
@if (count($tableOfContents) > 2)
Table of Contents
@endif
@foreach ($page->content as $content) @include('partials.content-includes', [ 'content' => $content ]) @endforeach
@endsection ?>