无法在变量“$fileNameToStore”中获取文件名和扩展名,但可以将默认图像名称 {'noimage.jpg'} 保存在数据库中。我想知道这是什么原因。
public function store(Request $request)
{
$this->validate($request, [
'img' => 'nullable|max:1999'
// 'phone' => 'required'
]);
//handle file
$fileNameToStore = 'noimage.jpg';
if($request->hasFile('img')){
//get file name and extension
$filenameWithExt = $request->file('img')->getClientOriginalName();
//get just file name
$filename = $request->file('img')->getClientOriginalName();
//get just extension
$extension = $request->file('img')->getClientOriginalExtension();
//file name to store
$fileNameToStore = $filename.'_'.time().'.'.$extension;
//upload the image
$path = $request->file('img')->storeAs('public/product_images', $fileNameToStore);
}
//create product
$product = new Product;
$product->type = $request->input('type');
$product->img = $fileNameToStore;
$product->details = $request->input('details');
$product->save();
$notification = array(
'message' => 'Ürün kaydedildi !',
'alert-type' => 'success'
);
return redirect('/urungir')->with($notification);
}