bipin's avatar
Level 2

not reading docx mimes

hello guys i m using mimes to do file validation here is my code

    $validator = Validator::make($input, [ 
             
                'resume' => 'nullable|mimes:docx,doc|max:2000', 
              
            ]);

when user uploading docx file type its throw error ,it read some docx type and some not

0 likes
2 replies
Cinek's avatar

Which laravel version? Try:

 'resume' => 'nullable|mimes:docx,doc,zip|max:2000', 
1 like

Please or to participate in this conversation.