URL::signedRoute Starts with api. after changing the queue driver to google cloudtask #150
Answered
by
dumithsalinda
dumithsalinda
asked this question in
General
-
I'm using google app engine for the project. recently changed the queue driver to google cloud task queue. After changing the queue driver, The signed route on my email return the domain starting from api.Domain.com. Which was earlier domain.com The following code used in the email.
|
Beta Was this translation helpful? Give feedback.
Answered by
dumithsalinda
Aug 7, 2024
Replies: 1 comment 2 replies
-
I tried to reproduce this, but I can't. Do you have a reproducible example? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not sure what causes the issue. but I've fixed the issue by adding
URL::forceRootUrl(config('app.url'));
in the Service Provider.Thank you.