Answers for "render html data from db laravel"

PHP
0

render html data from db laravel

This works fine for Laravel 4

{{html_entity_decode($post->body)}}
For Laravel 5 you may need to use this instead

{!!html_entity_decode($post->body)!!}
Posted by: Guest on April-09-2022

Browse Popular Code Answers by Language