Laravel 5: Display HTML with Blade
You need to use
{!! $text !!}
The string will auto escape when using {{ $text }}
.
For laravel 5
{!!html_entity_decode($text)!!}
Figured out through this link, see RachidLaasri answer
You can try this:
{!! $text !!}
You should have a look at: http://laravel.com/docs/5.0/upgrade#upgrade-5.0