group(function () { Route::get('/home', [PostController::class, 'index'])->name('home'); Route::resource('posts', PostController::class)->except(['index', 'show']); Route::get('/posts/{post}', [PostController::class, 'show'])->name('posts.show'); });