Validation

A field failing validation
  • Columns of type VARCHAR(15) will automatically carry a less than 15 chars validator.

  • Non-nullable columns will automatically carry a Present validator.

However, you may want to enforce stricter restrictions than the ones which are implemented in your data source.

Adding validation rules

The list of operators (Present, LongerThan, ...) which can be used when adding validators is the same as the filter operators.

use ForestAdmin\AgentPHP\DatasourceCustomizer\CollectionCustomizer;
use ForestAdmin\AgentPHP\DatasourceToolkit\Components\Query\ConditionTree\Operators;

$forestAgent->customizeCollection(
    'Customer',
    function (CollectionCustomizer $builder) {
        $builder->addFieldValidation('firstName', Operators::PRESENT])
        	->addFieldValidation('firstName', Operators::LONGER_THAN, 2)
            ->addFieldValidation('firstName', Operators::SHORTER_THAN, 13);
    }
);

Last updated

Was this helpful?