Hello artisan,
In this laravel file validation tutorial, I will show you how we can validate our requested file before save it into the database and public directory. So if you don't know how to validate the requested file then this example is for you.
First after submitting file, we will validate it using laravel 8 isValid
method. Using this method, you may verify that there were no problems uploading the file via the isValid
method.
It is very important to validate files or images before storing them in your storage or public directory. To validate your file before saving in this way which I am sharing.
See the example code:
if ($request->file('photo')->isValid()) {
//there is no problem with this file
}
Read also: Laravel 8 Login and Registration Example with Github
Hope this code might help you.
#laravel #laravel-validation #laravel-8x