说,我有一张名为Medical_test的表。我想使用复选框值保存一些测试名称。 假设,我的观点看起来像这样:
<form action="{{ route('savetestnames')}}" method="post">
<input type="checkbox" name="checkbox[]" value="Blood Test">Blood Test<br>
<input type="checkbox" name="checkbox[]" value="X-ray">X-ray<br>
<input type="checkbox" name="checkbox[]" value="Ultrasonography">ultrasonography
</form>
现在我选择前两个复选框,即血液测试&amp; X射线检查。如何使用控制器将它们保存在我的数据库中?有人请帮忙。
编辑: 说,我的控制器看起来像这样:
public function SavePatientTests(Request $request)
{
$tests = new Test();
// what will be the code here
}