duanjue2576 2017-10-24 06:57
浏览 98
已采纳

在Laravel Voyager管理面板中渲染Google Map

i am trying to show google map in Voyager admin panel i use bread but i get error :

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

any solution ?

  • 写回答

1条回答 默认 最新

  • doushun1870 2017-11-02 05:31
    关注

    You should add trait Spatial in your model

    use TCG\Voyager\Traits\Spatial;

    and initialize the field with coordinates

    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;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部