laravel logged out after redirecting from payment gateway

Solutions on MaxInterview for laravel logged out after redirecting from payment gateway by the best coders in the world

showing results for - "laravel logged out after redirecting from payment gateway"
Frances
27 Jan 2016
1Laravel 7 Changes
2
3Our package is compatible with Laravel 7 but the same_site setting is changed 
4in default Laravel installation, make sure you change same_site to null in 
5config/session.php or callback wont include cookies and you will be logged 
6out when a payment is completed. So inside your config/session.php update
7
8return [
9  ...
10  ...
11  'same_site' => null,
12  ...
13  ...
14];
Valeria
17 Sep 2016
1Paygate payment Gateway issue of logout after gateway callback can be solved
2by updating 'secure' to false and 'same_site' to null inside 
3`config/session.php`