Validation
Validation
How do I create custom validation requests?
To create a custom validation request, we need to extend the AeroRequestabstract class that’s loc...
How do I use validation requests?
To use a custom validation request, we have to replace the request that is passed to the controll...
How do I display validation error messages?
There are multiple ways of displaying your validation errors. From the backend perspective, the r...
What are the available validation requests?
Example: <?php namespace Aero\Store\Http\Requests; use Aero\Common\Requests\AeroRequest; class Up...
How do I set a custom order validator for shipping methods?
You can define logic that will be used to confirm if a shipping method is available for a specifi...
How do I set a custom order validator for shipping rates?
You can override the default logic that decides whether a shipping rate is applicable to an order...
How do I use a custom total item price totalizer for a shipping rate?
Setting a custom item price totalizer allows you to define the logic used to get the total price ...
How do I use a custom total item weight totalizer for a shipping rate?
Setting a custom item weight totalizer allows you to define the logic used to get the total weigh...