我正在尝试在页面编辑表单上上传多个图片。在我的 PageTemplates.php 中,我有:
$this->crud->addField([
'name' => 'images',
'label' => 'Fotos',
'type' => 'upload_multiple',
'upload' => true,
'disk' => 'uploads',
'hint' => 'Some hint text.',
'fake' => true
]);
在我的页面模型中,我有:
public function setImagessAttribute($value)
{
$attribute_name = "images";
$disk = "uploads";
$destination_path = "images/pages";
$this->uploadMultipleFilesToDisk($value, $attribute_name, $disk, $destination_path);
}
在 config / filesystems.php 的 $ disks 数组中,我有:
'uploads' => [
'driver' => 'local',
'root' => public_path('uploads'),
],
但是当我尝试保存页面时,我遇到了两个问题:
在我的数据库 extras字段中,我得到了:
"images":[
{
},
{
}
],
我做错了什么?
答案 0 :(得分:2)
在执行以下操作后,它工作正常:
$fillable
'fake' => true