I’m the creator of HydePHP. This is indeed possible. While there is no built-in Blade directive for this (maybe we should add one!), you can easily accomplish this by simply using some PHP code to get a file’s contents and compiling it to Markdown. HydePHP does include helpers in the Markdown
class.
Take this for example:
@extends('hyde::layouts.app')
@section('content')
{{ \Hyde\Markdown\Models\Markdown::fromFile(\Hyde\Hyde::path('resources/example-markdown.md')) }}
@endsection
This will take the file contents of the file in the resources/
directory (or whichever you choose) and compile the Markdown to HTML and put it in your Blade view!
You can of course also create your own Blade directive, or use a package. Though this is a great feature for us to include in HydePHP itself.