when redirect from another website/domain session has been destroyed. then need to login.
just little bit change your session configuration
config/session.php
‘same_site’ => ‘none’,
or if you’re take it from .env file
‘same_site’ => env(‘SESSION_SAME_SITE’, ‘none’),
then run this command php artisan config:clear
you’ll get solve your problem.
New contributor
Md Shanto Hossain is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.