Hi
Small question concerning templates and escaping HTML tags in it. I would love to display the alert notes in my HTML emails. So far, I can preg_replace but I get < and > instead of < and >. Is there a way to disable inside {{ and }} ?
@if ($alert->alert_notes)
<span><b>Alert Notes:</b><br> {{ preg_replace('/\n/', '<br>\n', $alert->alert_notes) }}<br><br></span>
@endif