china-distpicker
china-distpicker copied to clipboard
getPlaceholder和laravel-admin 1.7.8 不兼容
trafficstars
Encore\Admin\Form\Field:中的getPlaceHolder定义
public function getPlaceholder(): string
{
return $this->placeholder ?: trans('admin.input').' '.$this->label;
}
要求返回值是string
Encore\ChinaDistpicker\Distpicker 中定义的
protected $placeholder= []; 为数组,使用时报错。
public function getPlaceholder(): string 把string去掉即可
我修改了Distpicker.php文件,将 $placeholder = '', __construct 中将其 json_encode, 在render() 中 再次 json_decode 即可。