Disable CSRF on api routes

This commit is contained in:
Daniel_I_Am 2020-08-29 19:20:10 +02:00
parent f5c47ceaa6
commit 8cd67a026d
No known key found for this signature in database
GPG Key ID: 80C428FCC9743E84

View File

@ -12,6 +12,6 @@ class VerifyCsrfToken extends Middleware
* @var array * @var array
*/ */
protected $except = [ protected $except = [
// 'api/*'
]; ];
} }