php - Laravel - document extension validation rule -


i have document upload field , validate in laravel using rule:

'document' => 'required|mimes:doc,docx,rtf,txt,xls,xlsx,ppt,pdf|max:1536'

it works fine on validations. realized allowed csv too, came know mime type csv text that's allows it. tried upload .sql worked too.

what best way have validation based on extension of document?


Comments

Popular posts from this blog

sql - can we replace full join with union of left and right join? why not? -

javascript - Parallax scrolling and fixed footer code causing width issues -

iOS: Performance of reloading UIImage(name:...) -