我的这个表包含数据库表'patient'的数据。
<td>
<a href="{{ URL::to('/addvisit/'.$patient->pID) }}">
<img src="images/visit.png" style="width:30px; height:30px;">
</a>
</td>
单击圆形图标时,它将重定向到一个页面,其中的表单将插入数据库表“visit”中。
以下是表格:
{!! Form::model($patient, ['url'=>'visit/' . $patient->pID, 'method' => 'PATCH']) !!}
<div class="form-group">
{!! Form::label('fname', 'Full Name',['class' => 'control-label'])!!}
{!! Form::text('pName',null,['class' => 'form-control']) !!}
{!! Form::label('address', 'Address',['class' => 'control-label'])!!}
{!! Form::text('pAddress',null, ['class' => 'form-control']) !!}
{!! Form::submit('SUBMIT',['class' => 'form-control btn btn-success']) !!}
</div>
{!! Form::close() !!}
如何将“患者”表中的患者ID添加到“访问”表中作为外键。
答案 0 :(得分:0)
通过控制器将表单再次传递给视图,并将其存储在隐藏的输入
上