- Forums
- laravel
- Solved: Validated() Call To Undefined Method App\http\requests\examplerequest::validated()
this is the solution if you are getting an error with laravel validated() [5241], Last Updated: Mon Jun 24, 2024
edwin
Thu Dec 07, 2023
0 Comments
329 Visits
Error: Call to undefined method App\Http\Requests\ExampleRequest::validated()
Solution: To solve this error, you will need to extend FormRequest to your class. for example, this is what I did with App\Http\Requests\ExampleRequest:
use Illuminate\Foundation\Http\FormRequest;
class UserUpdateRequest extends FormRequest
This should work now.