我有一个表格:
{ Form::open(array('action' => 'RatesController@postUserRate', $client->id)) }}
{{ Form::text('rate', '', array('placeholder' => 'Enter new custom client rate...')) }}
{{ Form::submit('Submit', array('class' => 'btn btn-primary')) }}
{{ Form::close() }}
如何通过表单将我的 $client->id 值传递给我的控制器方法?
我目前有一个如下所示的控制器方法:
public function postUserRate($id)
{
$currentUser = User::find(Sentry::getUser()->id);
$userRate = DB::table('users_rates')->where('user_id', $currentUser->id)->where('client_id', $id)->pluck('rate');
if(is_null($userRate))
{
...
}else{
....
}
}
错误日志显示“RatesController::postUserRate() 缺少参数 1”
关于如何将这个 $client->id 传递给我的控制器的任何想法,以便我可以按照我想要的方式使用它?