{{ Form::open(array('route' => 'game/winner', 'class' => 'form game play')) }}
<ul>
<?php foreach($players as $player) : ?>
<li>
<div class="radio radio-primary">
<label>
{{ Form::radio('player', $player->id, false, ['class' => 'radio']) }}
<span class="circle"></span>
<span class="check"></span>
<?php echo $player->firstname; ?>
</label>
</div>
</li>
<?php endforeach; ?>
<li>
{{ Form::submit('End Game', array('class' => 'btn btn-success submit')) }}
</li>
</ul>{{ Form::close() }}
我循环播放并制作单选按钮,最多两个,然后用户选择获胜者并提交表单。如何传递未选择的值,以便我可以在此表单指示的视图中使用该数据?
答案 0 :(得分:0)
如果我正确地阅读了您的问题 - 您已经有了单选按钮列表 - 因为每个单选按钮代表一个$player
。
因此,只需让路由game/winner
再次在服务器端提取$players
列表,然后将其传递给用户选择的所选$player
。