the bola v2 website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

routes.php 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Enable Routes
  6. |--------------------------------------------------------------------------
  7. |
  8. | Statamic adds its own routes to the front-end of your site. You are
  9. | free to disable this behavior.
  10. |
  11. | More info: https://statamic.dev/routing
  12. |
  13. */
  14. 'enabled' => true,
  15. /*
  16. |--------------------------------------------------------------------------
  17. | Action Route Prefix
  18. |--------------------------------------------------------------------------
  19. |
  20. | Some extensions may provide routes that go through the frontend of your
  21. | website. These URLs begin with the following prefix. We've chosen an
  22. | unobtrusive default but you are free to select whatever you want.
  23. |
  24. */
  25. 'action' => '!',
  26. /*
  27. |--------------------------------------------------------------------------
  28. | Middleware
  29. |--------------------------------------------------------------------------
  30. |
  31. | Define the middleware that will be applied to the web route group.
  32. |
  33. */
  34. 'middleware' => 'web',
  35. ];