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