LogViewer/code/app/Http/Middleware/VerifyCsrfToken.php
splin94@yandex.ru 857fce873f -
2023-11-10 10:14:47 +00:00

18 lines
309 B
PHP
Executable File

<?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 = [
'*',
];
}