-
Notifications
You must be signed in to change notification settings - Fork 334
Closed
Labels
Description
I create places table with name and location column
but location is not point
its polygon and i store polygon of a places in table
now how can i check the point is on which column
I try :
$s9 = new Point(38.021996, 46.3799);
$spaa = Place::find(3);
$spac = $spaa->location;
$result=$spac->contains('location',$s9);
but not work