© 2026 Hedgehog Software, LLC
$wire.newLocations($event.target.value)
Unable to call component method. Public method [newLocations] not found on component
// GeoMap.php class GeoMap extends Field { use HasExtraAlpineAttributes; protected string $view = 'forms.components.geo-map'; protected float | Closure $lat = 0; protected float | Closure $lon = 0; public function getMapsUrl(): string { return MapsHelper::getMapUrl(); } public function newLocations($address): array { return MapsHelper::getLocations($address); } }