I want to use PHP7's Null Coalesce feature to output HTML, is this possible?
<p>{{$site->address_line_2 ?? "<i>Address Line 2</i>"}}</p>
Im currently using Laravel and blade, and the above outputs
<i>Address Line 2</i>
As a string instead of a HTML <i>
tag with the content Address Line 2