p3k/blade-markdown-directive

0.10.0 2023-02-17 22:14 UTC

This package is auto-updated.

Last update: 2024-04-18 00:46:21 UTC


README

This adds a Laravel Blade directive to render the enclosed text as Markdown.

Installation

First require this project using Composer:

composer require p3k/blade-markdown-directive

Add the following to your config/app.php file in the providers section:

  p3k\MarkdownServiceProvider::class,

Usage

Now in any .blade.php file, you can use the @markdown directive to render Markdown.

<div>
  @markdown($description)
</div>