How to validate the input data before insert in database.
When create the new database table and also add BREAD. How to validate the form when open for insert data into database.
In your BREAD under Optional Details for your field, enter the following using Laravel's validation rules.
{
"validation": {
"rule": "required|min:20"
}
}
Thanks @marktopper
This issue has been automatically locked since there has not been any recent activity after it was closed. If you have further questions please ask in our Slack group.
Most helpful comment
In your BREAD under
Optional Detailsfor your field, enter the following using Laravel's validation rules.