Is there a way to modify $_POST and $_GET and then have them available to the Input class? Example:
$_POST['somevar'] = 'foo';
echo Input::get('somevar');
// Outputs foo
Try this:
Input::replace(['somevar' => 'foo']);
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community