public function form()
{
$this->file('file', '请选择上传文件')->hidePreview();
}
或者是
public function form()
{
$this->file('file', '请选择上传文件')->options(['showPreview' => false]);
}
public function form()
{
$this->file('file', '请选择上传文件')->hidePreview();
}
或者是
public function form()
{
$this->file('file', '请选择上传文件')->options(['showPreview' => false]);
}