Hi guys!
$point = Point::find(array(
'columns' => [
'lat' => 'X(geopoint)',
'lon' => 'Y(geopoint)',
]
));
print_r($point->toArray()); // Good, "lat" and "lon" isset
echo $poi->lat; // Bad, Notice undefined property $lat ...
Why?