Blade, Use html inside variable being passed into partial view is not being rendered

By default in Laravel 5 {{ $title }} construction wil be escaped.

If you don’t want the data to be escaped, you may use the following syntax:

{!! $title !!}

Read more about Blade control structures: http://laravel.com/docs/5.0/templates#other-blade-control-structures

Leave a Comment