2018-08-06 12:30:51 +00:00
|
|
|
<?php
|
|
|
|
namespace App\Http\Middleware;
|
2015-07-19 06:49:24 +00:00
|
|
|
|
2018-08-06 12:30:51 +00:00
|
|
|
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
|
2015-07-19 06:49:24 +00:00
|
|
|
|
2018-08-06 12:30:51 +00:00
|
|
|
class VerifyCsrfToken extends Middleware
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The URIs that should be excluded from CSRF verification.
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
protected $except = [
|
|
|
|
//
|
|
|
|
];
|
2015-07-19 06:49:24 +00:00
|
|
|
}
|