路线 [proforms2.destroy2] 未定义

我不想在我的控制器中创建第二个销毁方法,以删除更大的可删除元素的一部分。我在这一行看到错误:


 `<td><form action="{{ route('proforms2.destroy2',$query2->id) }}" method="POST"></td>`

路线 [proforms2.destroy2] 未定义。


这是路线:


`Route::resource('proforms2', 'ProformController@destroy2');`

这是 ProformController.php 方法:


public function destroy2(Proform $proform, $query2)

{

$query2->delete();


return redirect()->route('proforms.edit')

->with('success','Product deleted successfully');

}


holdtom
浏览 108回答 1
1回答

慕丝7291255

我不想在我的控制器中创建第二个销毁方法,以删除更大的可删除元素的一部分。我在这一行看到错误:&nbsp;`<td><form action="{{ route('proforms2.destroy2',$query2->id) }}" method="POST"></td>`路线 [proforms2.destroy2] 未定义。这是路线:`Route::resource('proforms2', 'ProformController@destroy2');`这是 ProformController.php 方法:public function destroy2(Proform $proform, $query2){$query2->delete();return redirect()->route('proforms.edit')->with('success','Product deleted successfully');}
打开App,查看更多内容
随时随地看视频慕课网APP