2022-11-06 11:28:22 +00:00
|
|
|
<?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 = [
|
2022-12-27 16:24:41 +00:00
|
|
|
// notify
|
|
|
|
'balances/notify/*',
|
2022-11-06 11:28:22 +00:00
|
|
|
];
|
|
|
|
}
|