paytm gateway logout after callback laravel 7

Solutions on MaxInterview for paytm gateway logout after callback laravel 7 by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "paytm gateway logout after callback laravel 7"
Alessandro
14 Sep 2017
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