관리-도구
편집 파일: VerifyCsrfToken.php
<?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 = [ 'crop', 'upload', 'ajax', 'ajax/*', 'ajax/calendar', '/ajax/hours', 'manager/ajax', 'manager/ajax/except', 'manager/ajax/*', '/manager/ajax/current', 'manager/addnew', '/password/email' ]; }