You may need to apply html_entity_decode to your data.
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)!!}
I am having a problem by rendering some html stuff from a database table. I have a function that is calling and returning some html content from databse table, when i use {{ }} double curly braces it shows the content on page but as a plain text not rebdered as html. After i try to use {!! !!} it does not show anything on page. It's pretty weird, i don't understand why and what's the solution in this case. My blade page contains the .blade extension as well.
Please advice.
Please or to participate in this conversation.