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.

9 lines
278 B

3 years ago
  1. @php
  2. $content = $post['lead'].$post['content'];
  3. $readtime = (new \Mtownsend\ReadTime\ReadTime($content))->timeOnly(true)->setTranslation([
  4. 'minute' => ''
  5. ])->get();
  6. @endphp
  7. <div class="post__readtime">
  8. Reading time {{ $readtime }} Minutes
  9. </div>