Laravel File Upload Validation

后端 未结 2 1810
野趣味
野趣味 2020-12-28 14:31

I\'m new to Laravel. I have a form with a File upload function on it. How can I validate their file? I will only allowed Microsoft Word files. Here\'s my validation code.

2条回答
  •  离开以前
    2020-12-28 15:08

    Try this?

    'file' => 'required|max:10000|mimes:application/vnd.openxmlformats-officedocument.wordprocessingml.document'
    

    You may want to set some custom message for the response though :)

提交回复
热议问题