mivita/app/Http/Middleware/VerifyCsrfToken.php
2025-08-12 18:01:59 +02:00

17 lines
355 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 = [
'portal/login/verify', // Temporär für OTP-Login
];
}