Files

19 lines
357 B
PHP
Raw Permalink Normal View History

2023-12-22 12:35:55 +08: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 = [
'/paddle/webhook',
'/v1/api/*',
];
}