我有一个数据库表,每一行都有一个名为 id 的主键。我想创建一个页面来删除使用下面的表单提交 id 的行:
<form action="{{ route('Account.destroy') }}" method="DELETE">
<input type="hidden" name="_token" value="{{ csrf_token() }}">
<input type="text" name="id">
<button type="submit"> Delete My Account </button>
</form>
但表格没有按预期工作!
我发现我需要将ID设置为 {{route()}} ,所以我尝试了 {{route(&#39; [&#39;帐号。销毁&#39;,id]&#39;)然后出现这些错误:
The errors' page with conducted id to route()
我知道路线的错误方法([&#39; Account.destroy&#39;,id]),但我不知道如何解决这个问题。请帮我!谢谢!
P / s:对不起,如果我的英语太糟糕了!
答案 0 :(得分:1)
你和第二个人很接近。你需要这样的东西:
{{ route('Account.destroy', ['account' => $id]) }}
有关详细信息,请参阅this section of the docs。
答案 1 :(得分:0)
<input name="_method" type="hidden" value="DELETE"/>