VerifyCsrfToken.php 433 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace App\Http\Middleware;
  3. use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
  4. class VerifyCsrfToken extends Middleware {
  5. /**
  6. * Indicates whether the XSRF-TOKEN cookie should be set on the response.
  7. *
  8. * @var bool
  9. */
  10. protected $addHttpCookie = true;
  11. /**
  12. * The URIs that should be excluded from CSRF verification.
  13. *
  14. * @var array
  15. */
  16. protected $except = [
  17. "callback/notify"
  18. ];
  19. }