nova-map
Laravel Nova Map Field
Thanks for the initial work https://github.com/pavinthan
How to install
-
Download package using composer:
composer require pavinthan/nova-map -
Publish the configuration:
php artisan vendor:publish --tag=config --provider=nova-map -
Insert the map into your form:
<?php
.....
use Pavinthan\NovaMap\Map;
......
public function fields(Request $request)
{
......
Map::make('location'),
....
}