I need to built URLs like this:
http://www.example.com/param1/param2/param3/.../paramN
in a search page, user searchs by any possible options so making a URL like it in Laravel would be like this:
Route::get('{param1?}/{param2?}/{param3?}/.../{paramN?}', array( ... ) );
Is there any other way? Or maybe pass /
as a part of parameter to have this:
low_range-1000/high_range-5000/weight-2/height-4/red/
so above line become just one parameter to route.
any help?