Laravel 8 documentation says that I can use forward slashes as part of an URL parameter:
https://laravel.com/docs/8.x/routing#parameters-encoded-forward-slashes
It's not working for me. I did:
Route::get('/testslash/{param}', function($param) {
return $param;
})->where('param', '.*');
Calling it with /testslash/test%2Ftest
Results in a 404 page not found.
When using a parameter without slash, the page is loaded showing the parameter value as expected.
Do I maybe have to set another particular laravel option to make this work?