📅  最后修改于: 2022-03-11 14:54:08.125000             🧑  作者: Mango
When you define a route as a resource then Laravel seems to create all the
routes necessary for your resource: GET, POST, PATCH, DELETE.
So you would just need to define
Route::resource('taxonomy','TaxonomyController');
or
Route::resource('taxonomy.post','TaxonomyPostController');