In laravel, we can get the input value via Input::get(\'inputname\'). I try to change the value by doing this Input::get(\'inputname\') = \"new value\";>
Input::get(\'inputname\')
Input::get(\'inputname\') = \"new value\";>
I also found this problem, I can solve it with the following code:
public function(Request $request) { $request['inputname'] = 'newValue'; }
Regards