资源型控制器路由无法识别 destroy

同样是资源型控制器
{{ route('admin.brand.edit', $b->id) }}
{{ route('admin.brand.destroy',$b->id) }}
,edit就可以识别,而destroy就不识别。

destory打印后是
http://esshop.cn/admin/brand/5

edit打印后是
http://esshop.cn/admin/brand/5/edit

这是它们的路由:
Route::resource('brand', 'BrandController');

路由所属的群组:
Route::group(['prefix' => 'admin', 'namespace' => 'Admin'], function () {

谢谢。
已邀请:

要回复问题请先登录注册