We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38c2a1a commit 8576d22Copy full SHA for 8576d22
helpers.md
@@ -3280,7 +3280,9 @@ $uri = Uri::of('https://example.com/path');
3280
3281
// Generate URI instances to paths, named routes, or controller actions...
3282
$uri = Uri::to('/dashboard');
3283
-$uri = Uri::route('user.profile', ['user' => 1]);
+$uri = Uri::route('users.show', ['user' => 1]);
3284
+$uri = Uri::signedRoute('users.show', ['user' => 1]);
3285
+$uri = Uri::temporarySignedRoute('user.index', now()->addMinutes(5));
3286
$uri = Uri::action([UserController::class, 'index']);
3287
$uri = Uri::action(InvokableController::class);
3288
0 commit comments