📅  最后修改于: 2022-03-11 14:54:49.104000             🧑  作者: Mango
public function store()
{
request()->validate([
'file' => 'required',
'type' => 'required'
],
[
'file.required' => 'You have to choose the file!',
'type.required' => 'You have to choose type of the file!'
]);
}