overview
In a standard MVC (Model, View, Controller) paradigm, a controller represents the entity which responds to an HTTP request. Controllers in Psychic are classes which inherit from the base PsychicController
class, which can be imported from Psychic. They will inherit many useful methods for responding to requests, as well as many useful helpers for setting and reading cookies, accessing request parameters, and much more.
tip
- To learn how to generate a new controller, see our guides on generating a controller
- To learn about how controller serialize data, see our serialization guide
- To learn about how controllers use http status codes, see our status code guide
- To learn about handling exceptions, see our exception handling guide
- To learn about openapi integration, see our openapi guide