File(docx,pdf) and image(jpeg,png etc..) support validation laravel

In my project I m trying to upload image using livewire and its working fine…
But Now I want add doc,pdf and image(all type image) upload support .
can anyone tell me what type of validation I have to put.
This is my code

$validatedData = $this->validate([
            'product_name' => 'required',
            'images.*' => 'image|max:1024',
        ]);

Hey, @Neeraj1005
This is how to do it

'images.*' => 'image|max:1024|mimes:jpg,png,jpeg',

Now I solved using this

 'images.*' => 'mimes:jpg,jpeg,png,bmp,gif,svg,webp,pdf,docx|max:1024',

Yes, Exactly!

I’m Glade your issue was solved.

Happy coding.