You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First of all thanks for this great boilerplate. I am using it a lot. I found an issue when if you want to use SSR out of box without building the SPA version of your project your api path is inaccessible and it is throwing the file_get_contents error. This for me is not an issue because the api on subdomain works and if you provide a token you can use all the api endpoints where authorization is required.
However problem out of box is that the links in the notification which is send to user once they are registered (if MustVerify is enabled) contains link to the API back end end point.
There is a file called VerifyEmail.php and i modified the code a bit so that the link is actually sending end users to the front-end. ENV variables and config file needs to be setup.
Hi there,
First of all thanks for this great boilerplate. I am using it a lot. I found an issue when if you want to use SSR out of box without building the SPA version of your project your api path is inaccessible and it is throwing the file_get_contents error. This for me is not an issue because the api on subdomain works and if you provide a token you can use all the api endpoints where authorization is required.
However problem out of box is that the links in the notification which is send to user once they are registered (if MustVerify is enabled) contains link to the API back end end point.
There is a file called VerifyEmail.php and i modified the code a bit so that the link is actually sending end users to the front-end. ENV variables and config file needs to be setup.
My .env variables:
APP_URL=http://localhost:3000 API_URL=http://localhost:800
My app.php file config for this includes these lines
'url' => env('APP_URL', 'http://localhost:3000'), 'api_url' => env('API_URL', 'http://localhost'),
Also i found out that these lines in file EventServiceProvider.php
protected $listen = [ Registered::class => [ SendEmailVerificationNotification::class, ], ];
Are causing duplicate verification email generation because this email generation is also called in RegisterController.php file
What do you think about it?
The text was updated successfully, but these errors were encountered: