我有以下控制器:
public function postupdate($subject, $id)
//my code
return Redirect::route('webupdate'); // This code is wrong
下面的路线是我想要重定向到的地方,但是如何在包含来自上面控制器的两个 slug 时重定向?
路线:
Route::get('/updateweb/{subject}/{id}/', array( 'as' => 'webupdate', 'uses' => 'WebController@updatefunc'));