Monday, March 20, 2017

Laravel 5.4 how to exclude empty field in url when GET form?

I built form with GET method but when i submit form empty field also pass to url, can i exclude empty field from passing to url ?

For example > when i submit my form url changed to :

?jobTitle=Title&jobCompany=CompanyName&jobGovernorate=&jobLocation=&postingDate=ad

Here in this example jobGovernorate and jobLocation is empty so i want form skip those when i submit the form.

If there's a way to get url like this

?jobTitle=Title&jobCompany=CompanyName&postingDate=ad

Because jobGovernorate and jobLocation is empty

Sorry for poor english, Thank you.



via Uk63

Advertisement