phoenix-routing
Installation
SKILL.md
Phoenix Routing
Phoenix routing maps incoming HTTP requests to controller actions. The router is the entry point for all web requests and determines which controller action should handle each request. Phoenix provides powerful routing macros for RESTful resources, scopes, pipelines, and verified routes.
Basic Route Declaration
Single Routes
Define individual routes using HTTP verb macros:
get "/", PageController, :home
Phoenix supports all standard HTTP verbs: