Skip to content

Instantly share code, notes, and snippets.

@lifez
Created December 26, 2015 02:36
Show Gist options
  • Select an option

  • Save lifez/d56f20e1874a5f4efde9 to your computer and use it in GitHub Desktop.

Select an option

Save lifez/d56f20e1874a5f4efde9 to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
class VerifyCsrfToken extends BaseVerifier
{
/**
* The URIs that should be excluded from CSRF verification.
*
* @var array
*/
protected $except = [
'estimate-reach',
'adinterest',
'suggest',
//
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment