-2

我正在尝试在 Voyager 管理面板中显示谷歌地图我使用面包但我收到错误:

Invalid argument supplied for foreach() (View: path\vendor\tcg\voyager\resources\views\formfields\coordinates.blade.php) (View: paht\vendor\tcg\voyager\resources\views\formfields\coordinates.blade.php)

任何解决方案?

4

1 回答 1

4

您应该在模型中添加特征空间

使用 TCG\Voyager\Traits\Spatial;

并用坐标初始化字段

use TCG\Voyager\Traits\Spatial;

class Product extends Model
{
  use Spatial;
  protected $spatial = ['coordinates']; //here is going your field name; should be the point type;
}
于 2017-11-02T13:31:33.300 回答