love_php/app/Http/Middleware/VerifyCsrfToken.php

25 lines
488 B
PHP
Raw Normal View History

2026-04-02 09:20:51 +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
*/
protected $except = [
//
'wechat',
'face',
'api/wechat/server',
'merchant/work/love/mp/server',
'merchant/work/love/saas/server',
'report/forms',
'/'
];
}