migrate to gtea from bistbucket
This commit is contained in:
20
app/Http/Middleware/VerifyCsrfToken.php
Normal file
20
app/Http/Middleware/VerifyCsrfToken.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Middleware;
|
||||
|
||||
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
|
||||
|
||||
class VerifyCsrfToken extends Middleware
|
||||
{
|
||||
/**
|
||||
* The URIs that should be excluded from CSRF verification.
|
||||
*
|
||||
* @var array<int, string>
|
||||
*/
|
||||
protected $except = [
|
||||
'/ssl-commerz/payment/success',
|
||||
'/ssl-commerz/payment/failed',
|
||||
'/paytm/status',
|
||||
'/cinetpay/status',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user