I\'m currently trying to create a HTML email in Laravel 5 and I have some text (which contains elements) I want to insert in the email. I use the fo
You need to use:
{!! $text !!}
instead of
{{ $text }}
Blade automatically escapes any html when echoing unless you explicitly tell it not to.