group(function () { Route::get('/', [ArticleController::class, 'index'])->name('articles.index'); Route::get('/{article}', [ArticleController::class, 'show'])->name('articles.show'); Route::post('/', [ArticleController::class, 'store'])->name('articles.store'); Route::post('/{article}/comments', [CommentController::class, 'store'])->name('comments.store'); });