Boilerplate to use a Directus Instance to Build a Custom Website, Content will be Manage by Directus
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
243 B

  1. @extends('layout')
  2. @inject('markdownHelper', 'App\Helpers\MarkdownHelper')
  3. @section('content')
  4. <h1>
  5. {{ $page['data']['title'] }}
  6. </h1>
  7. <div class="content">
  8. {!! $markdownHelper->parse($page['data']['content']) !!}
  9. </div>
  10. @endsection