使用 Laravel 背包上传文件(类型 => 上传)在编辑中不可见
Using Laravel Backpack upload a file (type => upload) is not visible in editing
我使用 laravel 背包 类型 => 'upload' 视图上传文件。它上传成功。但在编辑中,它是不可见的输入。有什么不对的,有知道的帮帮我。
我的控制器
$this->crud->addField([
'label' => "Document",
'name' => "document",
'type' => 'upload',
'upload' => true,
'crop' => false,
'disk' => 'vault',
]);
下面附上编辑输入视图。没有显示已经上传的文件名。
试试这个
试试这个
使用 ], 'both');
$this->crud->addField(
[
'label' => "Document",
'name' => "document",
'type' => 'upload',
'upload' => true,
'crop' => false,
'disk' => 'vault',
], 'both');
我使用 laravel 背包 类型 => 'upload' 视图上传文件。它上传成功。但在编辑中,它是不可见的输入。有什么不对的,有知道的帮帮我。
我的控制器
$this->crud->addField([
'label' => "Document",
'name' => "document",
'type' => 'upload',
'upload' => true,
'crop' => false,
'disk' => 'vault',
]);
下面附上编辑输入视图。没有显示已经上传的文件名。
试试这个
试试这个
使用 ], 'both');
$this->crud->addField(
[
'label' => "Document",
'name' => "document",
'type' => 'upload',
'upload' => true,
'crop' => false,
'disk' => 'vault',
], 'both');