Laravel - Routing
What will be the URL for the route defined below?
Route::prefix('api')->group(function () {
Route::prefix('v2')->group(function () {
Route::get('users', [UserController::class, 'list']);
});
});