I'm working on a website for parkos where clients can make reservations with there email but some clients use a plus sign in their email.
for example:
test+parkos@gmail.com
Now if for example clients wanted to see their reservations I'm creating a get request in the url and you would get something like this:
http://test.com/reservations/?email=test+parkos@gmail.com&number=GH76G
after that I'm trying to retrieve the email and echo it:
$email = request()->input('email');
{{!! $email!!}}
Than If I try to view on it my webpage this is what I get:
test parkos@gmail.com
The + sign is gone and I was wondering if there is a way to keep the + sign.