1#### Laravel 7 Changes
2Our package is comptible with Laravel 7 but same_site setting is changed in
3default Laravel installation, make sure you change `same_site` to `null` in
4`config/session.php` or callback wont include cookies and you will be logged
5out when a payment is completed. So inside your `config/session.php` update
6
7return [
8 ...
9 ...
10 'same_site' => null,
11 ...
12 ...
13];
14