Skip to content

Commit 8576d22

Browse files
committed
wip
1 parent 38c2a1a commit 8576d22

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

helpers.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -3280,7 +3280,9 @@ $uri = Uri::of('https://example.com/path');
32803280

32813281
// Generate URI instances to paths, named routes, or controller actions...
32823282
$uri = Uri::to('/dashboard');
3283-
$uri = Uri::route('user.profile', ['user' => 1]);
3283+
$uri = Uri::route('users.show', ['user' => 1]);
3284+
$uri = Uri::signedRoute('users.show', ['user' => 1]);
3285+
$uri = Uri::temporarySignedRoute('user.index', now()->addMinutes(5));
32843286
$uri = Uri::action([UserController::class, 'index']);
32853287
$uri = Uri::action(InvokableController::class);
32863288

0 commit comments

Comments
 (0)