名称前缀
Route::name('users.')->prefix('users')->group(function () {
Route::name('comments.')->prefix('comments')->group(function () {
Route::get('{id}', function ($id) {
return $id;
})->name('show');
});
});Last updated