meetup/app/Http/Middleware/VerifyCsrfToken.php

18 lines
330 B
PHP
Raw Permalink Normal View History

2023-04-12 13:55:26 +00: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.
*
* @var array<int, string>
*/
protected $except = [
2023-04-20 10:12:09 +00:00
'/post-scan'
2023-04-12 13:55:26 +00:00
];
}