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
all validation rules are backend, only some are frontend too
What about more complex validation rulesYou can use custom Laravel validation rules.