osb/app/Http/Middleware/VerifyCsrfToken.php

25 lines
463 B
PHP
Raw Normal View History

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