pavinthan / nova-map
A Laravel Nova field.
Package info
Language:Vue
pkg:composer/pavinthan/nova-map
dev-master
2020-04-10 12:03 UTC
Requires
- php: >=7.1.0
This package is auto-updated.
Last update: 2026-06-10 10:00:10 UTC
README
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'),
....
}