我不想在我的控制器中创建第二个销毁方法,以删除更大的可删除元素的一部分。我在这一行看到错误:
`<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');
}
慕丝7291255