pingcrm/app/Http/Middleware/VerifyCsrfToken.php

18 lines
320 B
PHP
Raw Normal View History

2019-03-05 18:10:11 -03: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.
*
2021-12-08 13:59:08 -03:00
* @var array<int, string>
2019-03-05 18:10:11 -03:00
*/
protected $except = [
//
];
}