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