在 Laravel Voyager 管理面板中渲染 Google 地图

Render Google Map in Laravel Voyager admin panel

我正在尝试在 Voyager 管理面板中显示 google 地图我使用面包但出现错误:

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)

有什么解决办法吗?

您应该在您的模型中添加 Spatial 特征

使用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;
}