-
-
Notifications
You must be signed in to change notification settings - Fork 511
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Signed URL in notification not working with localized route #739
Comments
Having the same issue. @YannikFirre did you find a solution? |
Hello, No, finally, my route did not need to be localized. Sorry :/ |
Same problem for us, if we generate a signed route and we visit it without the language code is working, if we add the language code to url we receive a 401 error. |
Same issue here. If it's a queued notification that contains a signedRoute, the route in the email is generated is without the locale en therefore invalid as the server auto redirects it to the currentLocale. |
I have the same problem with the verify route and queued mail. |
I fixed it puting LaravelLocalization::setLocale() before to use URL::signedRoute |
just add the path of route to ignored array in laravellocalization.php config file
|
Describe the bug
When i use signed url on localized url in notification, it's doesn't work.
To Reproduce
URL::signedRoute('test');
works in view but not in notification when called in toArray method.Expected behavior
The toRoute method called in signedURL return the uri without the locale.
More info:
Thanks for any help :D
The text was updated successfully, but these errors were encountered: