Created
December 26, 2015 02:36
-
-
Save lifez/d56f20e1874a5f4efde9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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