我的 CRUD 应用程序上有一个按钮,如下所示:
<a class="btn btn-danger" onclick="return confirm('Are you sure?')" href="{{route('topic.destroy', $topic->id)}}">
当用户单击按钮时,它会在我的资源控制器中加载方法,而不是方法。showdestroy
我的路线:
Route::resource('/main_topic', 'MainTopicController');
Route::resource('/topic', 'TopicController');
Route::resource('/post', 'PostController');
为什么它没有使用正确的控制器方法?
HUX布斯