Consider single-action controllers
- ·
- Telegram
- ·
- Newsletter
If you have a complex route action, consider moving it to a separate controller.
For OrderController::create, you'd create CreateOrderController.
Another solution is to move that logic to an action class — do what works best in your case.