You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wrote a route for test sending hashed values in url. and it doesnt work!
My route:
Route::get('/test/{value}','Controller@index2');
My controller function: public function index2(Request $request , $value){ dd(urldecode($value));}
If i send for example '$' character which is encoded ('%24') index2 function shows it. but with '/' character ('%2f') it returns 404 page.
The text was updated successfully, but these errors were encountered:
I wrote a route for test sending hashed values in url. and it doesnt work!
My route:
Route::get('/test/{value}','Controller@index2');
My controller function:
public function index2(Request $request , $value){ dd(urldecode($value));}
If i send for example '$' character which is encoded ('%24') index2 function shows it. but with '/' character ('%2f') it returns 404 page.
The text was updated successfully, but these errors were encountered: