feat: 新增文章评论分页列表接口

This commit is contained in:
2025-01-15 17:56:39 +08:00
parent 110e997423
commit 83c4ae38fc
4 changed files with 125 additions and 0 deletions

View File

@@ -72,6 +72,12 @@ Route::group('v1', function () {
// 分类删除
Route::delete('delete/:id', 'ArticleCategory/delete');
});
// 文章留言评论
Route::group('message', function () {
// 留言列表
Route::get('index', 'ArticleLeaveMessage/index');
});
});
})->prefix('v1.');