pavinthan/nova-map is a Laravel package for a laravel nova field..
It currently has 2 GitHub stars and 2.333 downloads on Packagist.
Install it with composer require pavinthan/nova-map.
Discover more Laravel packages by pavinthan
or browse all Laravel packages to compare alternatives.
Last updated
Thanks for the initial work https://github.com/pavinthan
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'),
....
}