我正在尝试创建一个表单以删除我的数据库中的行:
@foreach ($CostStatuses as $CostStatus)
<tr>
<td class="table-text">
<div>
<a href="/costStatus/{{ $CostStatus->id }}/edit">
{{ $CostStatus->status_name }}
</a>
</div>
</td>
<td>
{{ Form::open(array('url' => 'CostStatus/' . $CostStatus->id, 'class' => 'pull-right')) }}
{{ Form::hidden('_method', 'DELETE') }}
{{ Form::submit('Delete this Nerd', array('class' => 'btn btn-warning')) }}
{{ Form::close() }}
</td>
</tr>
@endforeach
但是html将{{ }}
内的表单显示为用户的文本。
答案 0 :(得分:0)
那是因为{{}}
没有执行里面的内容。使用{!! !!}
。
答案 1 :(得分:0)
已经修好:
只需更改{{
的{{1}}。