我希望将参数传递给与Restful Controller的链接, 这是我的路线档案:
Route::controller('example', 'ExampleController');
观点:
<a href="{{URL::action('ExampleController@getMethode', ['user' => '234'])}}" >xxx</a>
控制器:
public function getMethode($user) {
var_dump($user);
}
答案 0 :(得分:0)
这是我的建议: route.php:
Route::get('/example/{param1}/{param2}', ['uses' => 'examplecontroller@getparams'])
和您的控制器
public function getParams($param1,$param2){
}
对于url生成,您可以将参数传递给路由:
link_to_action('exampleController@getIndex', $title, $parameters = array(), $attributes = array());