name('today'); Route::get('latest', \LatestArticles::class)->name('latest'); Route::get('topics', [TopicsController::class, 'index'])->name('topics.index'); Route::get('topic/{topic:slug}', [TopicsController::class, 'show'])->name('topics.show'); Route::get('article/{article:id}', [ArticlesController::class, 'show'])->name('article.show');