Laravel: Display HTML with Blade Laravel: Display HTML with Blade laravel laravel

Laravel: 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