packinthan/nova-map

Laravel Nova 字段。

安装数: 2,309

依赖项: 0

建议者: 0

安全: 0

星标: 2

关注者: 3

分支: 1

开放问题: 19

语言:Vue


README

Laravel Nova 地图字段

感谢https://github.com/pavinthan的初始工作

如何安装

  1. 使用composer下载包

    composer require pavinthan/nova-map
    
  2. 发布配置

    php artisan vendor:publish --tag=config --provider=nova-map
    
  3. 将地图插入到您的表单中

<?php

.....
use Pavinthan\NovaMap\Map;

......

    public function fields(Request $request)
    {

        ......
        Map::make('location'),

        ....
    }