调用未定义函数 method_field()
Call to undefined function method_field()
我用这段代码创建了流明视图:
<form action="{{ route('extentions.update', ['id'=>$extention->id]) }}" class="form" method="POST">
@method('PUT')
@include('extentions._partials.form')
<button type="submit">Enviar</button>
</form>
但是我在打开这个视图时收到错误Call to undefined function method_field()
,Lumen 没有@method 功能吗?如果是这样,我该怎么办?
使用 <input type="hidden" name="_method" value="PUT">
而不是 @method('PUT')
有效。
我用这段代码创建了流明视图:
<form action="{{ route('extentions.update', ['id'=>$extention->id]) }}" class="form" method="POST">
@method('PUT')
@include('extentions._partials.form')
<button type="submit">Enviar</button>
</form>
但是我在打开这个视图时收到错误Call to undefined function method_field()
,Lumen 没有@method 功能吗?如果是这样,我该怎么办?
使用 <input type="hidden" name="_method" value="PUT">
而不是 @method('PUT')
有效。