Open wangdeer opened 3 years ago
I have the same situation. If there is no associated data, an error occurs. If there is - everything is ok. 2.1.0-beta
@attentive20
临时解决方案是把 /vendor/dcat/laravel-admin/src/Grid.php
中的
public function __toString()
{
return $this->render();
}
改为:
public function __toString()
{
return $this->render() ?? '';
}
然后等新版本修复。
Description:
从
2.0.24-beta
升级到2.1.0-beat
以后$grid->name->tree()
没有关联数据时,点击展开报500
错误:经过调试发现
Method Dcat\Admin\Grid::__toString()
中的$this->render();
在没有关联数据时返回的是null
Steps To Reproduce: