name('home'); Route::get('/about-us', AboutUs::class)->name('about-us'); Route::prefix('news')->group(function () { Route::get('/', NewsIndex::class)->name('news.index'); Route::get('/{news:slug}', NewsShow::class)->name('news.show'); });