gestionale2025/app/Http/Middleware/VerifyCsrfToken.php
2025-08-05 14:10:01 +02:00

18 lines
318 B
PHP

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