Answers for "paytm gateway logout after callback laravel 7"

PHP
0

paytm gateway logout after callback laravel 7

#### Laravel 7 Changes
Our package is comptible with Laravel 7 but same_site setting is changed in 
default Laravel installation, make sure you change `same_site` to `null` in 
`config/session.php` or callback wont include cookies and you will be logged 
out when a payment is completed. So inside your `config/session.php` update

return [
  ...
  ...
  'same_site' => null,
  ...
  ...
];
Posted by: Guest on November-23-2020

Code answers related to "paytm gateway logout after callback laravel 7"

Browse Popular Code Answers by Language