What are you trying to achieve?
You would need to redirect to a route which then uses Controller@method.
From the doc:
Route::get('user/profile', array('as' => 'profile', 'uses' => 'UserController@showProfile'));
which calls showProfile method of UserController
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community