raghub-fe / app /Http /Middleware /VerifyCsrfToken.php
lifedebugger's picture
Deploy files from GitHub repository with LFS
6cd3bab
raw
history blame contribute delete
320 Bytes
<?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 = [
//
];
}