Given the following code, I simple want the second route to send an arbitrary value for id or any other variable I can access from within show();
Route::get('foo/{id}', 'FoobarController@show')->where('id', '[0-9]+');
Route::get('bar', 'FoobarController@show')->with('id', -1); // This pseudo-code doesn't work. I want to send parameter id with an arbitrary value
showmethod as an extra parameter namedidsomething link thispublic function show($id=0){}?