adrema/app/Http/Middleware/VerifyCsrfToken.php

17 lines
309 B
PHP
Raw Normal View History

2020-04-10 20:32:12 +02: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.
*
2023-02-13 15:56:20 +01:00
* @var array<int, string>
2020-04-10 20:32:12 +02:00
*/
protected $except = [
];
}