From ff498d2c5b9121a6bf078d1a14b8a4d713600e56 Mon Sep 17 00:00:00 2001 From: Benjamin Takats Date: Thu, 1 Dec 2022 22:31:21 +0100 Subject: [PATCH] proximitySearch added --- app/Nova/City.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/app/Nova/City.php b/app/Nova/City.php index 0cb212b1..bcf85c1a 100644 --- a/app/Nova/City.php +++ b/app/Nova/City.php @@ -51,10 +51,14 @@ class City extends Resource ->exceptOnForms(), Number::make('Latitude') - ->rules('required', 'numeric')->step(0.00001), + ->rules('required', 'numeric') + ->step(0.00001) + ->help('https://latitude.to/lat/47.72671/lng/10.31688'), Number::make('Longitude') - ->rules('required', 'numeric')->step(0.00001), + ->rules('required', 'numeric') + ->step(0.00001) + ->help('https://latitude.to/lat/47.72671/lng/10.31688'), BelongsTo::make('Country'),