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
Yeah the solution above work just fine..
use {!! $contents !!}
{!! $contents !!}
instead of this
{{ $contents }}
This {!! $contents !!} is for allowing html While this {{ $contents }} is just for plain text.