From 0da737e60e13a4cce8642f500e1bce98c2253409 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Thu, 8 Jul 2021 14:36:54 +0200 Subject: [PATCH] Remove blade --- source/docs/v3/integrations/passport.blade.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/docs/v3/integrations/passport.blade.md b/source/docs/v3/integrations/passport.blade.md index ce6c733..baf350e 100644 --- a/source/docs/v3/integrations/passport.blade.md +++ b/source/docs/v3/integrations/passport.blade.md @@ -61,8 +61,8 @@ If you want to use the same keypair for all tenants, do the following. { $client = new ClientRepository(); - $client->createPasswordGrantClient(null, 'Default password grant client', 'http://{{your.redirect.path}}'); - $client->createPersonalAccessClient(null, 'Default personal access client', 'http://{{your.redirect.path}}'); + $client->createPasswordGrantClient(null, 'Default password grant client', 'http://your.redirect.path'); + $client->createPersonalAccessClient(null, 'Default personal access client', 'http://your.redirect.path'); } ```