Documentation

Everything you need to get started with Routesy.

Exclusion Pattern

Since many official Laravel packages register custom routes, such as Horizon, Telescope, Pulse, and some others, Routesy allows you to exclude certain routes through the Exclusion Pattern feature. By default, some routes unnecessary for Routesy (vendor routes) are already excluded when you load a new project.

Hide from this session

Default Patterns

The following patterns are excluded by default:

  • /storage*
  • /horizon*
  • /telescope*
  • /pulse*
  • /livewire*
  • /_boost*
  • /_ignition*
  • /_debugbar*

How Patterns Work

Patterns use a * wildcard that performs startsWith matching. For example, /horizon* will exclude any route whose URI starts with /horizon.

If you add a pattern without a leading /, Routesy will automatically prepend it.

Removing Patterns

After removing a pattern from the exclusion list, press the "Rescan routes" button to refresh your route list and include the previously excluded routes.