Share validation rules with api resource controllers
What's the best way to reuse validation rules between my api resource controller and Filament? I've tried to re-use the validation rules from custom FormRequest:
But I can't seem to get access to the request values. I both the $this->input() and $this->request->all() are completely empty, so my custom validation rules fail.
0 Replies