我正在尝试保存图像地址,但出现以下错误:数组到字符串转换 Laravel。
我应该如何保存图像的路线?在官方文档中没有指出这一点。
我的代码如下:
看法
<input wire:model="imagenes" type="file" class="form-control-file" multiple>
零件
use WithFileUploads;
public $imagenes = [];
foreach ($this->imagenes as $pathGalería) {
$pathGalería->store('imagenesPropiedades');
}
$properties = Property::create([
'imagenes' => $this->imagenes
]);
编辑:阵列
我收到错误:数组到字符串的转换。请你帮助我好吗。