MethodsPropertiesConstantsNo public methods foundNo public properties foundNo constants foundNo protected methods found$except N/ANo private methods foundNo private properties foundN/A
Properties
$except
$except : array
The URIs that should be excluded from CSRF verification.
Type
array
VerifyCsrfToken.php
<?phpnamespaceApp\Http\Middleware;useIlluminate\Foundation\Http\Middleware\VerifyCsrfTokenas Middleware;classVerifyCsrfTokenextendsMiddleware{/**
* The URIs that should be excluded from CSRF verification.
*
* @var array
*/protected$except=[ //跳过csrf验证
'wechat',];}