F
Filament2mo ago
Aqua

Backend Validation also done by Filament?

I'm coming to a point where I'm checking and testing all validation rules and a question came up. How much validation does Filament do? The frontend validation is obvious, but how much backend validation does filament do? Is every rule in e.g. ->rules() also validated in the backend? How are you guys doing validation? Only using the Filament rules? What about more complex validation rules?
2 Replies
Dan Harrin
Dan Harrin2mo ago
all validation rules are backend, only some are frontend too
Dennis Koch
Dennis Koch2mo ago
What about more complex validation rules
You can use custom Laravel validation rules.

Did you find this page helpful?