I have an application in which you can choose between multiple customers.
Choosing a customer will generate following URL:
http://localhost:8000/customer/CUSTOMER_NAME
From there on, I would like to choose a specific sub-page (e.g.: the support page)
How do I generate the following link:
http://localhost:8000/customer/CUSTOMER_NAME/support
So far, I always lose my CUSTOMER_NAME parameter, and I do not know how to keep it.
The framework I use is Laravel 5.
Any ideas?
