Files
sirpremiumv2/app/Http/Middleware/VerifyCsrfToken.php
T
2023-07-26 08:28:13 -05:00

20 lines
364 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<int, string>
*/
protected $except = [
'/webhooks',
'/wompi_hook',
'/mp'
];
}