I am translating the following string:
<p> {{{ trans('myapp.signup_instructions', [ 'email' => '<strong>'.$invitation->email .'</strong>']) }}}</p>
However on our website we can still see the "<strong>[email protected]</strong>" as text. We were aiming to convert the just the e-mail parameter in the string into bold text
How can I achieve that?
<p> {{{ "<strong>{trans('myapp.signup_instructions', [ 'email' => $invitation->email ])}</strong>" }}}</p>{!! .. !!}instead of{{{ .. }}}