Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[2.x] Add @render() blade directiive #24

Open
wants to merge 1 commit into
base: 2.x
Choose a base branch
from

Conversation

lmottasin
Copy link
Contributor

eg. @render($post->body) helps to simplify things for devs.

@lmottasin
Copy link
Contributor Author

Linking to this issue #19

* @return string Rendered HTML content.
*/
Blade::directive('render', function ($blocks) {
return "<?php echo app('laravel-editorjs')->render($blocks); ?>";
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@lmottasin What about the exception?

render() method throws exception when it fails to render.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What I found is that handling the exception is not a valid solution. The developer must validate the JSON before saving it to the database, so the current approach is fine.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants