Files
spa-api/app/Http/Middleware/VerifyCsrfToken.php

18 lines
311 B
PHP
Raw Normal View History

<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
2015-02-22 20:47:03 -06:00
class VerifyCsrfToken extends BaseVerifier
{
2015-04-30 14:18:27 -05:00
/**
2015-04-30 14:19:00 -05:00
* The URIs that should be excluded from CSRF verification.
2015-04-30 14:18:27 -05:00
*
* @var array
*/
protected $except = [
//
];
}