VerifyCsrfToken.php 295 B

12345678910111213141516
  1. <?php
  2. namespace App\Http\Middleware;
  3. use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
  4. class VerifyCsrfToken extends Middleware {
  5. /**
  6. * The URIs that should be excluded from CSRF verification.
  7. *
  8. * @var array
  9. */
  10. protected $except = [
  11. "callback/notify"
  12. ];
  13. }