VerifyCsrfToken.php 403 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Http\Middleware;
  3. use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
  4. use Illuminate\Support\Facades\Redirect;
  5. class VerifyCsrfToken extends Middleware
  6. {
  7. /**
  8. * The URIs that should be excluded from CSRF verification.
  9. *
  10. * @var array
  11. */
  12. protected $except = [
  13. "/process_form_submit",
  14. "/availability/load"
  15. ];
  16. }