我正在提交具有文件的表单,但是当我尝试在控制器中获取文件时,它总是返回失败。
我已经尝试了可能的事情。
保存公共功能storeLogo(request $ request){
if($request->hasFile('logo')){
$image=$request->file($yes);
$fileName= time().'.'.$image->getClientOriginalExtension();
$location=public_path('merchantGlobal/'.$fileName);
Image::make($image)->save($location);
return "success";
}
return "failure";
}
我要获取控制器的成功消息