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.

16 lines
281 B

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