latlong.net as help text

This commit is contained in:
Benjamin Takats
2022-12-02 16:32:29 +01:00
parent 17591d8dbb
commit d27059aa3d

View File

@@ -53,12 +53,12 @@ class City extends Resource
Number::make('Latitude') Number::make('Latitude')
->rules('required', 'numeric') ->rules('required', 'numeric')
->step(0.000001) ->step(0.000001)
->help('https://latitude.to/lat/47.72671/lng/10.31688'), ->help('<a target="_blank" href="https://www.latlong.net/">https://www.latlong.net/</a>'),
Number::make('Longitude') Number::make('Longitude')
->rules('required', 'numeric') ->rules('required', 'numeric')
->step(0.000001) ->step(0.000001)
->help('https://latitude.to/lat/47.72671/lng/10.31688'), ->help('<a target="_blank" href="https://www.latlong.net/">https://www.latlong.net/</a>'),
BelongsTo::make('Country'), BelongsTo::make('Country'),