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];
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`