Migration
timcv opened this issue · 2 comments
timcv commented
Hi,
What column type would you use for the migration?
Thanks for a promising package!
//Tim
mikebronner commented
You basically have two fields, one for latitude and one for longitude. I would recommend:
$table->decimal("latitude", 15, 12)->nullable();
$table->decimal("longitude", 15, 12)->nullable();
timcv commented
Thank you!
You should att these details to the docs.
Thanks for an awesome field!
//Tim