VerifyCsrfToken.php 547 B

1234567891011121314151617181920212223
  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. '/practice-management/stat-tree/*',
  16. '/practice-management/stat-tree-line/*',
  17. '/practice-management/clause/replace-all'
  18. ];
  19. }