Implementing a Real-World Feature Across Drupal, Symfony, and Laravel
Feature: E-Commerce “Discount Code Validator”
Requirement:
- When a user applies a discount code during checkout:
- Validate the code
- Check expiration and usage limits
- Calculate discount
- Return an updated order total
- Must be extensible for future promotion types
This feature is small but touches services, events, plugins, and DI—perfect for comparing modular approaches.