I have a text like
<a href="http://www.google.com" target="_blank">www.google.com</a>
I want to show this text as www.google.com
with click able option and
this should open in in new tab. I have used strip_tags, but it only
displays the content without click able option.
Below is my code:
{{ strip_tags(nl2br($user->content)) }}
How can I do this in laravel
?