1
0
mirror of https://github.com/LinkStackOrg/LinkStack.git synced 2025-03-21 22:10:38 +01:00
2021-04-16 03:30:00 +04:30

18 lines
307 B
PHP
Executable File

<?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
*/
protected $except = [
//
];
}