File uploads
Validate you files via Laravel Precognition with ease!
By default, Laravel Precognition does not upload or validate files during a precognitive validation request. This ensures that large files are not unnecessarily uploaded multiple times.
Because of this behavior, you should ensure that your application customizes the corresponding form request's validation rules to specify the field is only required for full form submissions:
If you would like to include files in every validation request, you may set the validateFiles
config in your nuxt.config.ts
:
It is also possible to set this option directly on validate
method call:
In this case, we validate the whole form data, including files. Here is another example of the input with a validation callback on the change event:
Keep in mind that if you have files attached to the API request, then Content-Type will be passed as multipart/form-data
.
Last updated