Created
February 21, 2016 13:56
-
-
Save hewerthomn/b6c55088d0ff9c28415b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$latlng = "-8.769926868691913 -63.88429307573199"; | |
$radius = 5000; | |
$places = Place::where(DB::raw("ST_Distance_Sphere(places.latlng, ST_GeometryFromText('SRID=4326;POINT({latlng})'))"), '<', $radius) | |
->select('offers.*', DB::raw("ST_Distance_Sphere(places.latlng, ST_GeometryFromText('SRID=4326;POINT({$latlng})')) AS distance")) | |
->get(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment