I have a post route set up like this:
Route::post('/product/dashboard', function()
{
$from = Input::get('from');
$to = Input::get('to');
});
And now I would like to pass those to a controller.
I call controllers like this normally:
Route::get('/', 'HomeController@showWelcome');
How would I go on to that with variables?