Heimdall/app/Http/Middleware/VerifyCsrfToken.php

21 lines
365 B
PHP
Raw Normal View History

2018-01-26 14:35:01 +00: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
*/
protected $except = [
//
2018-02-05 19:43:24 +00:00
'order',
'appload',
'test_config'
2018-01-26 14:35:01 +00:00
];
}