Download the PHP package hyn/eloquent-markdown without Composer
On this page you can find all versions of the php package hyn/eloquent-markdown. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download hyn/eloquent-markdown
More information about hyn/eloquent-markdown
Files in hyn/eloquent-markdown
Package eloquent-markdown
Short Description Mix markdown, frontmatter and eloquent models for bling bling
License MIT
Informations about the package eloquent-markdown
Eloquent markdown
Ever felt like your markdown files could use meta information.. And once you've added frontmatter logic, whether it would be amazing to handle those files more humanely..
So let's combine markdown files, frontmatter and eloquent!
That something like the below:
Mutates into an object:
Installation
Now create a model you want to use for markdown files:
And setup the filesystem and markdown parser resolution, add in AppServiceProvider or somewhere:
Set
content
to the disk you configured to load the markdown files from. Or instantiate your own filesystem instance.
Usage
So if you have a file some/foo.md
, use Page::find('some/foo.md');
to create a Page object, where any frontmatter
meta information is stored as properties, the markdown contents are stored in the original state as the markdown
property
and the generated html is assigned to the contents
attribute.
Other stuff that works:
save()
delete()
- update the markdown property to renew the rendered content property automatically
All versions of eloquent-markdown with dependencies
hyn/frontmatter Version ^1.1
illuminate/support Version ^5.3
illuminate/database Version ^5.3