I'd like to make this simple HTML link in blade template, Laravel 7.2.2:
<a href="http://user:[email protected]">Test</a>
Laravel keeps removing "user:pass@" part. What I get is:
<a href="http://site.test">Test</a>
I've tried using {!! !!} syntax, tried @php @endphp, tried some tricks with replacing string fragments with strtr but nothing worked.
How do I output raw URL with login and password?