I\'m trying to utilize Laravel\'s localization feature, but I need to be able to put emphasis or bolden a portion of a phrase. Inserting a HTML tag into the language file ca
Use {!! !!} instead of {{ }} to prevent escaping:
{!! !!}
{{ }}
{!! trans('nav.find') !!}