Skip to content

Commit

Permalink
Temporary fix for Laravel 7.x
Browse files Browse the repository at this point in the history
  • Loading branch information
tzsk committed Apr 10, 2020
1 parent a103882 commit e01ddcb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Controllers/PaymentController.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@

class PaymentController extends Controller
{
/**
* Temporarily set cross site on
*/
public function __construct()
{
config(['session.same_site' => null]);
}

/**
* Got to payment.
*
Expand Down

0 comments on commit e01ddcb

Please sign in to comment.