I have this a tag
<a href="{{ $organization->website }}">Link</a>
If $organization->website is a url that contains http:// or https:// at the start, the link will work.
However, if it doesn't, the link will bring me to something like this
http://localhost/public/www.google.com instead of www.google.com
I know that you can use // so that links without http will work, like this
<a href="//{{ $organization->website }}">Link</a>
However, links with http:// or https:// at the start will now not work instead.
Is there a solution that can work with both (URLs with no http and URLs with http)?