photo/app/Http/Middleware/VerifyCsrfToken.php

25 lines
463 B
PHP
Raw Normal View History

2016-06-20 13:35:59 +00:00
<?php
namespace App\Http\Middleware;
2019-11-08 12:08:34 +00:00
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
2016-06-20 13:35:59 +00:00
2019-11-08 12:08:34 +00:00
class VerifyCsrfToken extends Middleware
2016-06-20 13:35:59 +00:00
{
2019-11-08 12:08:34 +00:00
/**
* Indicates whether the XSRF-TOKEN cookie should be set on the response.
*
* @var bool
*/
protected $addHttpCookie = true;
2016-06-20 13:35:59 +00:00
/**
* The URIs that should be excluded from CSRF verification.
*
* @var array
*/
protected $except = [
//
];
}