Files
xk-api-old-laravel/app/Http/Middleware/VerifyCsrfToken.php

22 lines
424 B
PHP
Raw Normal View History

2025-01-11 14:16:20 +08: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 = [
'wechat',
'notify/*',
'return/*',
'platformApi/*',
'internalServiceApi/*',
];
}