VerifyCsrfToken.php
TLDR
This file is a middleware class called VerifyCsrfToken
located in the App\Http\Middleware
namespace. It extends the VerifyCsrfToken
class provided by the Laravel framework and is responsible for handling CSRF verification for incoming requests.
Methods (if applicable)
N/A
Classes (if applicable)
N/A
<?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 = [
//
];
}